Skip to content

Commit b9ea458

Browse files
committed
docs: 分离中英文README文件,创建README.md(英文)和README.zh-CN.md(中文)
1 parent d4ebee3 commit b9ea458

File tree

2 files changed

+70
-67
lines changed

2 files changed

+70
-67
lines changed

README.md

Lines changed: 10 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,16 @@
1-
# JavaScript Debugger Bypass Goat | JavaScript 调试绕过测试平台
1+
# JavaScript Debugger Bypass Goat
22

3-
[English](#javascript-debugger-bypass-goat) | [中文](#javascript-调试绕过测试平台)
3+
[English (Current) | [中文](README.zh-CN.md)]
44

5-
## 在线体验 | Online Platform
5+
## Online Platform
66

77
🔗 **[https://jsrei.github.io/js-debugger-bypass-goat/](https://jsrei.github.io/js-debugger-bypass-goat/)**
88

99
![Star me on GitHub](https://img.shields.io/github/stars/JSREI/js-debugger-bypass-goat?style=social)
1010

11-
## JavaScript Debugger Bypass Goat
12-
1311
This is an online platform for testing JavaScript anti-debugging bypass techniques. The platform provides multiple test cases to help developers and security researchers test and validate the effectiveness of JavaScript debugger bypass tools.
1412

15-
### Features
13+
## Features
1614

1715
- Diverse test cases
1816
- Real-time validation
@@ -21,7 +19,7 @@ This is an online platform for testing JavaScript anti-debugging bypass techniqu
2119
- Code copy functionality
2220
- Internationalization support (English/Chinese)
2321

24-
### Test Cases
22+
## Test Cases
2523

2624
1. Basic debugger statements (Easy)
2725
2. Conditional debugger triggers (Medium)
@@ -30,7 +28,7 @@ This is an online platform for testing JavaScript anti-debugging bypass techniqu
3028
5. Event listener debugger (Hard)
3129
6. Proxy object debugger (Hard)
3230

33-
### Local Development
31+
## Local Development
3432

3533
1. Clone the repository:
3634
```bash
@@ -49,69 +47,14 @@ python -m http.server 8080
4947

5048
4. Access in your browser: `http://localhost:8080`
5149

52-
### Related Projects
50+
## Related Projects
5351

5452
- [js-debugger-bypass](https://github.com/JSREI/js-debugger-bypass) - JavaScript debugger bypass tool
5553

56-
### Contributing
54+
## Contributing
5755

5856
Pull Requests are welcome to add new test cases or improve existing ones.
5957

60-
### License
61-
62-
MIT License - See the [LICENSE](LICENSE) file for details
63-
64-
---
65-
66-
## JavaScript 调试绕过测试平台
67-
68-
这是一个用于测试JavaScript反调试绕过技术的在线平台。该平台提供了多个测试案例,帮助开发者和安全研究人员测试和验证JavaScript调试器绕过工具的有效性。
69-
70-
### 特点
71-
72-
- 多样化的测试案例
73-
- 实时验证功能
74-
- 清晰的难度分级
75-
- 详细的案例说明
76-
- 代码可复制功能
77-
- 多语言支持(中文/英文)
78-
79-
### 测试用例
80-
81-
1. 基础 debugger 语句(简单)
82-
2. 条件触发 debugger(中等)
83-
3. 混淆代码中的 debugger(困难)
84-
4. 定时器 debugger(中等)
85-
5. 事件监听器 debugger(困难)
86-
6. 代理对象 debugger(困难)
87-
88-
### 本地开发
89-
90-
1. 克隆仓库:
91-
```bash
92-
git clone https://github.com/JSREI/js-debugger-bypass-goat.git
93-
```
94-
95-
2. 进入项目目录:
96-
```bash
97-
cd js-debugger-bypass-goat
98-
```
99-
100-
3. 使用任意HTTP服务器运行项目,例如:
101-
```bash
102-
python -m http.server 8080
103-
```
104-
105-
4. 在浏览器中访问:`http://localhost:8080`
106-
107-
### 相关项目
108-
109-
- [js-debugger-bypass](https://github.com/JSREI/js-debugger-bypass) - JavaScript调试器绕过工具
110-
111-
### 贡献
112-
113-
欢迎提交Pull Request来添加新的测试用例或改进现有用例。
114-
115-
### 许可证
58+
## License
11659

117-
MIT License - 详见 [LICENSE](LICENSE) 文件
60+
MIT License - See the [LICENSE](LICENSE) file for details

README.zh-CN.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# JavaScript 调试绕过测试平台
2+
3+
[[English](README.md) | 中文 (当前)]
4+
5+
## 在线体验
6+
7+
🔗 **[https://jsrei.github.io/js-debugger-bypass-goat/](https://jsrei.github.io/js-debugger-bypass-goat/)**
8+
9+
![Star me on GitHub](https://img.shields.io/github/stars/JSREI/js-debugger-bypass-goat?style=social)
10+
11+
这是一个用于测试JavaScript反调试绕过技术的在线平台。该平台提供了多个测试案例,帮助开发者和安全研究人员测试和验证JavaScript调试器绕过工具的有效性。
12+
13+
## 特点
14+
15+
- 多样化的测试案例
16+
- 实时验证功能
17+
- 清晰的难度分级
18+
- 详细的案例说明
19+
- 代码可复制功能
20+
- 多语言支持(中文/英文)
21+
22+
## 测试用例
23+
24+
1. 基础 debugger 语句(简单)
25+
2. 条件触发 debugger(中等)
26+
3. 混淆代码中的 debugger(困难)
27+
4. 定时器 debugger(中等)
28+
5. 事件监听器 debugger(困难)
29+
6. 代理对象 debugger(困难)
30+
31+
## 本地开发
32+
33+
1. 克隆仓库:
34+
```bash
35+
git clone https://github.com/JSREI/js-debugger-bypass-goat.git
36+
```
37+
38+
2. 进入项目目录:
39+
```bash
40+
cd js-debugger-bypass-goat
41+
```
42+
43+
3. 使用任意HTTP服务器运行项目,例如:
44+
```bash
45+
python -m http.server 8080
46+
```
47+
48+
4. 在浏览器中访问:`http://localhost:8080`
49+
50+
## 相关项目
51+
52+
- [js-debugger-bypass](https://github.com/JSREI/js-debugger-bypass) - JavaScript调试器绕过工具
53+
54+
## 贡献
55+
56+
欢迎提交Pull Request来添加新的测试用例或改进现有用例。
57+
58+
## 许可证
59+
60+
MIT License - 详见 [LICENSE](LICENSE) 文件

0 commit comments

Comments
 (0)