mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-07-09 14:08:25 +02:00
Add files via upload
This commit is contained in:
+11
-24
@@ -1,40 +1,34 @@
|
||||
name: "httpx"
|
||||
command: "httpx"
|
||||
enabled: true
|
||||
|
||||
short_description: "快速HTTP探测和指纹识别工具"
|
||||
|
||||
description: |
|
||||
HTTPx是一个快速HTTP探测工具,用于发现和验证HTTP服务。
|
||||
|
||||
|
||||
**主要功能:**
|
||||
- 快速HTTP探测
|
||||
- 技术检测
|
||||
- 状态码过滤
|
||||
- 多线程支持
|
||||
|
||||
|
||||
**使用场景:**
|
||||
- HTTP服务发现
|
||||
- 技术栈识别
|
||||
- Web应用发现
|
||||
- 安全测试
|
||||
|
||||
parameters:
|
||||
- name: "target"
|
||||
- name: "url"
|
||||
type: "string"
|
||||
description: "目标文件或单个URL"
|
||||
required: true
|
||||
description: "单个目标URL(使用 -u 选项)"
|
||||
required: false
|
||||
flag: "-u"
|
||||
format: "flag"
|
||||
|
||||
- name: "probe"
|
||||
type: "bool"
|
||||
description: "启用探测"
|
||||
- name: "input_file"
|
||||
type: "string"
|
||||
description: "包含多个目标的文件(使用 -l 选项)"
|
||||
required: false
|
||||
flag: "-probe"
|
||||
flag: "-l"
|
||||
format: "flag"
|
||||
default: true
|
||||
|
||||
- name: "tech_detect"
|
||||
type: "bool"
|
||||
description: "启用技术检测"
|
||||
@@ -42,7 +36,6 @@ parameters:
|
||||
flag: "-td"
|
||||
format: "flag"
|
||||
default: false
|
||||
|
||||
- name: "status_code"
|
||||
type: "bool"
|
||||
description: "显示状态码"
|
||||
@@ -50,7 +43,6 @@ parameters:
|
||||
flag: "-sc"
|
||||
format: "flag"
|
||||
default: false
|
||||
|
||||
- name: "content_length"
|
||||
type: "bool"
|
||||
description: "显示内容长度"
|
||||
@@ -58,7 +50,6 @@ parameters:
|
||||
flag: "-cl"
|
||||
format: "flag"
|
||||
default: false
|
||||
|
||||
- name: "title"
|
||||
type: "bool"
|
||||
description: "显示页面标题"
|
||||
@@ -66,7 +57,6 @@ parameters:
|
||||
flag: "-title"
|
||||
format: "flag"
|
||||
default: false
|
||||
|
||||
- name: "web_server"
|
||||
type: "bool"
|
||||
description: "显示Web服务器"
|
||||
@@ -74,7 +64,6 @@ parameters:
|
||||
flag: "-server"
|
||||
format: "flag"
|
||||
default: false
|
||||
|
||||
- name: "threads"
|
||||
type: "int"
|
||||
description: "线程数"
|
||||
@@ -82,22 +71,20 @@ parameters:
|
||||
flag: "-t"
|
||||
format: "flag"
|
||||
default: 50
|
||||
|
||||
- name: "additional_args"
|
||||
type: "string"
|
||||
description: |
|
||||
额外的HTTPx参数。用于传递未在参数列表中定义的HTTPx选项。
|
||||
|
||||
|
||||
**示例值:**
|
||||
- "-o output.txt": 输出到文件
|
||||
- "-json": JSON格式输出
|
||||
- "-silent": 安静模式
|
||||
- "-rate-limit 100": 限制请求速率
|
||||
|
||||
|
||||
**注意事项:**
|
||||
- 多个参数用空格分隔
|
||||
- 确保参数格式正确,避免命令注入
|
||||
- 此参数会直接追加到命令末尾
|
||||
required: false
|
||||
format: "positional"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user