mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-04-21 18:26:38 +02:00
67 lines
1.6 KiB
YAML
67 lines
1.6 KiB
YAML
name: "dirsearch"
|
|
command: "dirsearch"
|
|
enabled: true
|
|
short_description: "高级目录和文件发现工具"
|
|
description: |
|
|
Dirsearch是一个高级Web内容扫描器,用于发现目录和文件。
|
|
|
|
**主要功能:**
|
|
- 快速目录和文件发现
|
|
- 多线程支持
|
|
- 递归扫描
|
|
- 扩展名过滤
|
|
|
|
**使用场景:**
|
|
- Web应用安全测试
|
|
- 目录枚举
|
|
- 文件发现
|
|
- 渗透测试
|
|
parameters:
|
|
- name: "url"
|
|
type: "string"
|
|
description: "目标URL"
|
|
required: true
|
|
flag: "-u"
|
|
format: "flag"
|
|
- name: "extensions"
|
|
type: "string"
|
|
description: "文件扩展名(逗号分隔)"
|
|
required: false
|
|
flag: "-e"
|
|
format: "flag"
|
|
default: "php,html,js,txt,xml,json"
|
|
- name: "wordlist"
|
|
type: "string"
|
|
description: "字典文件路径"
|
|
required: false
|
|
flag: "-w"
|
|
format: "flag"
|
|
- name: "threads"
|
|
type: "int"
|
|
description: "线程数"
|
|
required: false
|
|
flag: "-t"
|
|
format: "flag"
|
|
default: 30
|
|
- name: "recursive"
|
|
type: "bool"
|
|
description: "启用递归扫描"
|
|
required: false
|
|
flag: "-r"
|
|
format: "flag"
|
|
default: false
|
|
- name: "additional_args"
|
|
type: "string"
|
|
description: |
|
|
额外的dirsearch参数。用于传递未在参数列表中定义的dirsearch选项。
|
|
|
|
**示例值:**
|
|
- 根据工具特性添加常用参数示例
|
|
|
|
**注意事项:**
|
|
- 多个参数用空格分隔
|
|
- 确保参数格式正确,避免命令注入
|
|
- 此参数会直接追加到命令末尾
|
|
required: false
|
|
format: "positional"
|