mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-04-01 16:50:47 +02:00
61 lines
1.1 KiB
YAML
61 lines
1.1 KiB
YAML
name: "arjun"
|
||
command: "arjun"
|
||
enabled: true
|
||
|
||
short_description: "HTTP参数发现工具"
|
||
|
||
description: |
|
||
Arjun是一个HTTP参数发现工具,用于发现Web应用中的隐藏参数。
|
||
|
||
**主要功能:**
|
||
- HTTP参数发现
|
||
- 多种HTTP方法支持
|
||
- 多线程支持
|
||
- 稳定模式
|
||
|
||
**使用场景:**
|
||
- 参数发现
|
||
- Web应用安全测试
|
||
- Bug bounty侦察
|
||
- 安全测试
|
||
|
||
parameters:
|
||
- name: "url"
|
||
type: "string"
|
||
description: "目标URL"
|
||
required: true
|
||
flag: "-u"
|
||
format: "flag"
|
||
|
||
- name: "method"
|
||
type: "string"
|
||
description: "HTTP方法(GET, POST等)"
|
||
required: false
|
||
flag: "-m"
|
||
format: "flag"
|
||
default: "GET"
|
||
|
||
- name: "wordlist"
|
||
type: "string"
|
||
description: "自定义字典文件"
|
||
required: false
|
||
flag: "-w"
|
||
format: "flag"
|
||
|
||
- name: "threads"
|
||
type: "int"
|
||
description: "线程数"
|
||
required: false
|
||
flag: "-t"
|
||
format: "flag"
|
||
default: 25
|
||
|
||
- name: "stable"
|
||
type: "bool"
|
||
description: "使用稳定模式"
|
||
required: false
|
||
flag: "--stable"
|
||
format: "flag"
|
||
default: false
|
||
|