Skip to content
This repository was archived by the owner on Jun 24, 2025. It is now read-only.

Commit 822b735

Browse files
author
vaycore
committed
更新版本号为1.3.0;更新README.md说明文档
1 parent 93215ac commit 822b735

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,18 +73,20 @@ C:\Users\<用户名>\.config\OneScan\
7373

7474
### 动态变量
7575

76-
目前支持的动态变量如下:
76+
目前支持的动态变量如下(以目标:`http://www.xxxxxx.com:81/path/to/index.html` 为例)
7777

7878
```text
79-
{{host}} - 原请求头中的Host
80-
{{domain}} - 原请求头中的Host(不包含端口号
81-
{{domain.main}} - 主域名(如:`www.google.com` => `google.com`;注意:如果domain是IP地址,那么该值也是IP地址
82-
{{domain.name}} - 主域名的名称(如:`www.google.com` => `google`;注意:如果domain是IP地址,那么该值也是IP地址
83-
{{protocol}} - 原请求头中的协议(http、https
79+
{{host}} - 请求头中的Host(格式:www.xxxxxx.com:81)
80+
{{domain}} - 请求头中不包含端口号的Host(格式:www.xxxxxx.com
81+
{{domain.main}} - 主域名(格式:xxxxxx.com;如果是IP地址或无效格式,会自动跳过这条Payload
82+
{{domain.name}} - 主域名的名称(格式:xxxxxx;如果是IP地址或无效格式,会自动跳过这条Payload
83+
{{protocol}} - 请求头中的协议(格式:http)
8484
{{timestamp}} - Unix时间戳(单位:秒)
8585
{{random.ip}} - 随机IPv4值
8686
{{random.local-ip}} - 随机内网IPv4值
8787
{{random.ua}} - 随机UserAgent值,随机源可配置
88+
{{subdomain}} - 子域名动态变量(格式:www;只有主域名时:`xxxxxx.com` => `xxxxxx`)
89+
{{webroot}} - 一级目录动态变量(格式:path;不存在一级目录时,会自动跳过这条Payload)
8890
```
8991

9092
### Databoard数据看板
@@ -134,6 +136,7 @@ Request配置界面如下
134136

135137
- `QPS` QPS限制,限制每秒请求的数量,范围(`1-9999`
136138
- `Scan level` 限制目录扫描层级,范围(`1-99`)。限制方向:`Left to right`(从左往右),`Right to left`(从右往左)
139+
- `Retry` 请求失败时重试次数配置,范围(`0-9`
137140
- `Include method` 配置请求方法白名单
138141
- `Exclude suffix` 排除指定后缀的数据包
139142
- `Header` 递归扫描过程的请求头配置,可配置变量

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>burp.vaycore</groupId>
88
<artifactId>onescan</artifactId>
9-
<version>1.2.1</version>
9+
<version>1.3.0</version>
1010

1111
<properties>
1212
<plugin.name>OneScan</plugin.name>

src/main/java/burp/vaycore/onescan/common/Constants.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public interface Constants {
99

1010
// 插件信息
1111
String PLUGIN_NAME = "OneScan";
12-
String PLUGIN_VERSION = "1.2.1";
12+
String PLUGIN_VERSION = "1.3.0";
1313
boolean DEBUG = false;
1414

1515
// 插件启动显示的信息

0 commit comments

Comments
 (0)