Skip to content

Commit b7c9296

Browse files
committed
docs: 更新项目文档至v1.8.12,添加v1.8.1-v1.8.12变更日志
1 parent 93a52b6 commit b7c9296

3 files changed

Lines changed: 108 additions & 3 deletions

File tree

README.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<img src="https://img.shields.io/badge/Vue-3.x-green.svg" alt="Vue">
1010
<img src="https://img.shields.io/badge/FastAPI-0.100+-red.svg" alt="FastAPI">
1111
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
12-
<img src="https://img.shields.io/badge/Version-1.8.0-orange.svg" alt="Version">
12+
<img src="https://img.shields.io/badge/Version-1.8.12-orange.svg" alt="Version">
1313
</p>
1414

1515
<p align="center">
@@ -270,6 +270,52 @@ sqlmapWebUI/
270270

271271
## 📝 更新日志
272272

273+
### v1.8.12 (2025-12-24)
274+
275+
**修复**
276+
- 修复 cURL (Windows CMD) 解析时中文字符前的转义符 `^` 未移除的问题
277+
- 修复 HTTP 报文编辑器长行内容撑开容器的问题,添加软换行支持
278+
279+
### v1.8.11 (2025-12-24)
280+
281+
**修复**
282+
- 修复 Burp 插件 (Legacy/Montoya) 中文乱码问题,强制使用 UTF-8 编码处理 HTTP 请求
283+
284+
### v1.8.10 (2025-12-24)
285+
286+
**修复**
287+
- 修复任务日志区域无法滚动显示全部日志的问题
288+
289+
### v1.8.9 (2025-12-23)
290+
291+
**修复**
292+
- 修复 Burp 插件右键菜单扫描配置来源选择不生效的问题
293+
294+
### v1.8.8 (2025-12-23)
295+
296+
**修复**
297+
- 修复会话 Header 和 Body 字段配置不生效的问题
298+
299+
### v1.8.7 (2025-12-22)
300+
301+
**修复**
302+
- URL 解析时 host 字段排除端口,保持跨平台一致性
303+
304+
**优化**
305+
- 优化首页统计卡片尺寸
306+
307+
### v1.8.1-v1.8.6 (2025-12)
308+
309+
**新功能**
310+
- 新增会话 Body 字段动态替换功能
311+
- VulnShop 靶场添加日志系统
312+
- VulnShop 靶场模块化重构并增强安全性
313+
314+
**优化**
315+
- 提高 VulnShop 靶场鲁棒性,防止 SQLMap 扫描时崩溃
316+
- 调整任务列表空数据区域高度
317+
- API 前缀重命名 (/chrome/admin → /web/admin)
318+
273319
### v1.8.0 (2025-12)
274320

275321
**新功能**

README_EN.md

Lines changed: 47 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<img src="https://img.shields.io/badge/Vue-3.x-green.svg" alt="Vue">
1010
<img src="https://img.shields.io/badge/FastAPI-0.100+-red.svg" alt="FastAPI">
1111
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License">
12-
<img src="https://img.shields.io/badge/Version-1.8.0-orange.svg" alt="Version">
12+
<img src="https://img.shields.io/badge/Version-1.8.12-orange.svg" alt="Version">
1313
</p>
1414

1515
<p align="center">
@@ -277,6 +277,52 @@ Please read the [Disclaimer](DISCLAIMER.md) before use.
277277

278278
## Changelog
279279

280+
### v1.8.12 (2025-12-24)
281+
282+
**Fixes**
283+
- Fixed cURL (Windows CMD) parsing not removing `^` escape character before Chinese characters
284+
- Fixed HTTP request editor long line content stretching container, added soft wrap support
285+
286+
### v1.8.11 (2025-12-24)
287+
288+
**Fixes**
289+
- Fixed Burp plugin (Legacy/Montoya) Chinese character encoding issue, enforced UTF-8 encoding for HTTP requests
290+
291+
### v1.8.10 (2025-12-24)
292+
293+
**Fixes**
294+
- Fixed task log area unable to scroll to show all logs
295+
296+
### v1.8.9 (2025-12-23)
297+
298+
**Fixes**
299+
- Fixed Burp plugin right-click menu scan config source selection not working
300+
301+
### v1.8.8 (2025-12-23)
302+
303+
**Fixes**
304+
- Fixed session Header and Body field configuration not taking effect
305+
306+
### v1.8.7 (2025-12-22)
307+
308+
**Fixes**
309+
- URL parsing host field now excludes port for cross-platform consistency
310+
311+
**Improvements**
312+
- Optimized homepage statistics card size
313+
314+
### v1.8.1-v1.8.6 (2025-12)
315+
316+
**New Features**
317+
- Added session Body field dynamic replacement feature
318+
- VulnShop lab added logging system
319+
- VulnShop lab modular refactoring with enhanced security
320+
321+
**Improvements**
322+
- Improved VulnShop lab robustness, prevent crashes during SQLMap scanning
323+
- Adjusted task list empty data area height
324+
- API prefix renamed (/chrome/admin → /web/admin)
325+
280326
### v1.8.0 (2025-12)
281327

282328
**New Features**

doc/FEATURE_UPDATES.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,6 +175,19 @@
175175
- 详情页堆叠布局
176176
- 触摸友好的按钮尺寸
177177

178+
### 11. Burp 插件中文编码修复 ✅ (v1.8.11 新增)
179+
180+
#### 修复内容
181+
- 修复 Legacy API 和 Montoya API 版本的中文乱码问题
182+
- 强制使用 UTF-8 编码处理 HTTP 请求 body 和完整报文
183+
- 创建 HttpRequestUtils 工具类统一处理字符编码
184+
185+
### 12. HTTP 报文编辑器优化 ✅ (v1.8.12 新增)
186+
187+
#### 优化内容
188+
- 修复 cURL (Windows CMD) 解析时中文字符前的 `^` 转义符未移除的问题
189+
- 添加 CodeMirror 软换行支持,防止长行内容撑开容器
190+
178191
## 技术实现
179192

180193
### 数据模型扩展
@@ -253,7 +266,7 @@
253266

254267
## 更新日期
255268

256-
2025-12-23 (v1.8.0)
269+
2025-12-24 (v1.8.12)
257270

258271
## 开发者
259272

0 commit comments

Comments
 (0)