diff --git a/README.md b/README.md index c89ad3b..38d9185 100644 --- a/README.md +++ b/README.md @@ -99,7 +99,7 @@ C:\Users\<用户名>\.config\OneScan\ - `Exclude Header` 开关排除请求头(默认禁用),根据 `Request -> Exclude header` 里的配置,排除请求头中对应的值 - `Replace Header` 开关请求头替换(默认启用),使用 `Request -> Header` 中配置的请求头请求数据 - `DirScan` 开关递归扫描(默认启用),对目标进行递归扫描 -- `Merge Payload Processing` 开关合并目录扫描与Payload Processing扫描(默认启用),关闭后发送请求数量将多一倍 +- `Payload Processing` 开关 Payload Processing 功能(默认启用) - `Filter` 设置数据过滤规则 - `Import url` 导入 Url 目标进行扫描 - `Stop` 停止正在扫描的任务 diff --git a/imgs/config_payload.png b/imgs/config_payload.png index 7106340..cd3e523 100644 Binary files a/imgs/config_payload.png and b/imgs/config_payload.png differ diff --git a/imgs/main_panel.png b/imgs/main_panel.png index 4516538..7d8aa10 100644 Binary files a/imgs/main_panel.png and b/imgs/main_panel.png differ diff --git a/imgs/main_panel_test.png b/imgs/main_panel_test.png index 285d223..e43c436 100644 Binary files a/imgs/main_panel_test.png and b/imgs/main_panel_test.png differ diff --git a/pom.xml b/pom.xml index 30a630b..b0c62d3 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ burp.vaycore onescan - 1.3.7 + 1.4.0 OneScan diff --git a/src/main/java/burp/vaycore/onescan/common/Constants.java b/src/main/java/burp/vaycore/onescan/common/Constants.java index d575d86..f7bda82 100644 --- a/src/main/java/burp/vaycore/onescan/common/Constants.java +++ b/src/main/java/burp/vaycore/onescan/common/Constants.java @@ -9,14 +9,14 @@ public interface Constants { // 插件信息 String PLUGIN_NAME = "OneScan"; - String PLUGIN_VERSION = "1.3.7"; + String PLUGIN_VERSION = "1.4.0"; boolean DEBUG = false; // 插件启动显示的信息 String BANNER = "" + "#################################\n" + " " + PLUGIN_NAME + " v" + PLUGIN_VERSION + "\n" + - " Author: One\n" + + " Author: 0ne_1\n" + " Developer: vaycore\n" + " Developer: Rural.Dog\n" + " Github: https://github.com/vaycore/OneScan\n" +