mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 08:19:54 +02:00
52 lines
965 B
YAML
52 lines
965 B
YAML
name: "paramspider"
|
||
command: "paramspider"
|
||
enabled: true
|
||
|
||
short_description: "从Web档案中挖掘参数"
|
||
|
||
description: |
|
||
ParamSpider从Web档案中挖掘参数,用于发现隐藏的参数。
|
||
|
||
**主要功能:**
|
||
- 参数挖掘
|
||
- Web档案查询
|
||
- 多级深度支持
|
||
- 扩展名过滤
|
||
|
||
**使用场景:**
|
||
- 参数发现
|
||
- Bug bounty侦察
|
||
- Web应用安全测试
|
||
- 安全测试
|
||
|
||
parameters:
|
||
- name: "domain"
|
||
type: "string"
|
||
description: "目标域名"
|
||
required: true
|
||
flag: "-d"
|
||
format: "flag"
|
||
|
||
- name: "level"
|
||
type: "int"
|
||
description: "挖掘深度级别"
|
||
required: false
|
||
flag: "-l"
|
||
format: "flag"
|
||
default: 2
|
||
|
||
- name: "exclude"
|
||
type: "string"
|
||
description: "要排除的文件扩展名"
|
||
required: false
|
||
flag: "-e"
|
||
format: "flag"
|
||
|
||
- name: "output"
|
||
type: "string"
|
||
description: "输出文件路径"
|
||
required: false
|
||
flag: "-o"
|
||
format: "flag"
|
||
|