mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 08:19:54 +02:00
68 lines
1.6 KiB
YAML
68 lines
1.6 KiB
YAML
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
|
||
|
||
- name: "method"
|
||
type: "string"
|
||
description: "HTTP方法(GET, POST, PUT, DELETE等)"
|
||
required: false
|
||
default: "GET"
|
||
|
||
- name: "data"
|
||
type: "string"
|
||
description: "请求数据/参数(JSON格式)"
|
||
required: false
|
||
|
||
- name: "headers"
|
||
type: "string"
|
||
description: "自定义请求头(JSON格式)"
|
||
required: false
|
||
|
||
- name: "cookies"
|
||
type: "string"
|
||
description: "自定义Cookie(JSON格式)"
|
||
required: false
|
||
|
||
- name: "action"
|
||
type: "string"
|
||
description: "要执行的操作(request, spider, proxy_history, repeater, intruder)"
|
||
required: false
|
||
default: "request"
|
||
|
||
- name: "additional_args"
|
||
type: "string"
|
||
description: |
|
||
额外的http-framework-test参数。用于传递未在参数列表中定义的http-framework-test选项。
|
||
|
||
**示例值:**
|
||
- 根据工具特性添加常用参数示例
|
||
|
||
**注意事项:**
|
||
- 多个参数用空格分隔
|
||
- 确保参数格式正确,避免命令注入
|
||
- 此参数会直接追加到命令末尾
|
||
required: false
|
||
format: "positional" |