mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-04-01 08:40:42 +02:00
60 lines
1.1 KiB
YAML
60 lines
1.1 KiB
YAML
name: "x8"
|
|
command: "x8"
|
|
enabled: true
|
|
|
|
short_description: "隐藏参数发现工具"
|
|
|
|
description: |
|
|
X8是一个用于发现Web应用中隐藏参数的工具。
|
|
|
|
**主要功能:**
|
|
- 隐藏参数发现
|
|
- 多种HTTP方法支持
|
|
- 自定义字典
|
|
- 快速扫描
|
|
|
|
**使用场景:**
|
|
- 参数发现
|
|
- Web应用安全测试
|
|
- Bug bounty侦察
|
|
- 安全测试
|
|
|
|
parameters:
|
|
- name: "url"
|
|
type: "string"
|
|
description: "目标URL"
|
|
required: true
|
|
flag: "--url"
|
|
format: "flag"
|
|
|
|
- name: "wordlist"
|
|
type: "string"
|
|
description: "参数字典"
|
|
required: false
|
|
flag: "--wordlist"
|
|
format: "flag"
|
|
default: "/usr/share/wordlists/x8/params.txt"
|
|
|
|
- name: "method"
|
|
type: "string"
|
|
description: "HTTP方法"
|
|
required: false
|
|
flag: "--method"
|
|
format: "flag"
|
|
default: "GET"
|
|
|
|
- name: "body"
|
|
type: "string"
|
|
description: "请求体"
|
|
required: false
|
|
flag: "--body"
|
|
format: "flag"
|
|
|
|
- name: "headers"
|
|
type: "string"
|
|
description: "自定义请求头"
|
|
required: false
|
|
flag: "--headers"
|
|
format: "flag"
|
|
|