Files
CyberStrikeAI/tools/http-framework-test.yaml
2025-11-10 03:17:50 +08:00

84 lines
2.1 KiB
YAML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
name: "http-framework-test"
command: "curl"
enabled: true
short_description: "增强的HTTP测试框架Burp Suite替代"
description: |
增强的HTTP测试框架用于综合Web安全测试Burp Suite替代
**主要功能:**
- HTTP请求测试
- 代理拦截
- 重放器
- 入侵者
**使用场景:**
- Web安全测试
- HTTP测试
- 渗透测试
- 安全评估
parameters:
- name: "url"
type: "string"
description: "目标URL"
required: true
position: 0
format: "positional"
- name: "method"
type: "string"
description: "HTTP方法GET, POST, PUT, DELETE等"
required: false
default: "GET"
flag: "-X"
format: "flag"
- name: "data"
type: "string"
description: "请求数据/参数JSON格式或表单数据"
required: false
flag: "-d"
format: "flag"
- name: "headers"
type: "string"
description: "自定义请求头JSON格式如 {\"Content-Type\": \"application/json\"},或直接是 \"Header: Value\" 格式)"
required: false
flag: "-H"
format: "flag"
- name: "cookies"
type: "string"
description: "自定义Cookie格式name1=value1; name2=value2"
required: false
flag: "-b"
format: "flag"
- name: "action"
type: "string"
description: "要执行的操作request, spider, proxy_history, repeater, intruder。注意此参数仅用于标识操作类型不会传递给curl命令。"
required: false
default: "request"
# action 参数不传递给 curl仅用于工具内部逻辑
- name: "additional_args"
type: "string"
description: |
额外的curl参数。用于传递未在参数列表中定义的curl选项。
**示例值:**
- "-v": 详细输出
- "-L": 跟随重定向
- "-k": 忽略SSL证书错误
- "-s": 静默模式
- "-o output.txt": 输出到文件
**注意事项:**
- 多个参数用空格分隔
- 确保参数格式正确,避免命令注入
- 此参数会直接追加到命令末尾
required: false
format: "positional"