mirror of
https://github.com/Ed1s0nZ/CyberStrikeAI.git
synced 2026-03-31 08:19:54 +02:00
Add files via upload
This commit is contained in:
File diff suppressed because it is too large
Load Diff
119
tools/httpx.yaml
119
tools/httpx.yaml
@@ -1,90 +1,91 @@
|
||||
name: "httpx"
|
||||
command: "httpx"
|
||||
enabled: true
|
||||
short_description: "快速HTTP探测和指纹识别工具"
|
||||
short_description: "基于Python httpx库的HTTP客户端"
|
||||
description: |
|
||||
HTTPx是一个快速HTTP探测工具,用于发现和验证HTTP服务。
|
||||
该工具包装的是 Python 社区版 httpx CLI(`pip install httpx` 提供),可用于快速向 Web 目标发起请求、调试接口。
|
||||
|
||||
**主要功能:**
|
||||
- 快速HTTP探测
|
||||
- 技术检测
|
||||
- 状态码过滤
|
||||
- 多线程支持
|
||||
|
||||
**使用场景:**
|
||||
- HTTP服务发现
|
||||
- 技术栈识别
|
||||
- Web应用发现
|
||||
- 安全测试
|
||||
**提示:**
|
||||
- 官方 CLI 的调用方式为 `httpx <URL> [OPTIONS]`
|
||||
- 不支持 ProjectDiscovery 版本的 `-u/-l/-td` 等参数,请使用下方列出的原生选项或 additional_args 自行扩展
|
||||
parameters:
|
||||
- name: "url"
|
||||
type: "string"
|
||||
description: "单个目标URL(使用 -u 选项)"
|
||||
required: false
|
||||
flag: "-u"
|
||||
format: "flag"
|
||||
- name: "input_file"
|
||||
description: "目标URL(必填,作为位置参数传入)"
|
||||
required: true
|
||||
format: "positional"
|
||||
- name: "method"
|
||||
type: "string"
|
||||
description: "包含多个目标的文件(使用 -l 选项)"
|
||||
description: "HTTP方法,默认GET"
|
||||
required: false
|
||||
flag: "-l"
|
||||
flag: "-m"
|
||||
format: "flag"
|
||||
- name: "tech_detect"
|
||||
type: "bool"
|
||||
description: "启用技术检测"
|
||||
- name: "content"
|
||||
type: "string"
|
||||
description: "原始请求体内容(对应 httpx CLI 的 --content)"
|
||||
required: false
|
||||
flag: "-td"
|
||||
flag: "-c"
|
||||
format: "flag"
|
||||
- name: "json"
|
||||
type: "string"
|
||||
description: "JSON 请求体(字符串形式)"
|
||||
required: false
|
||||
flag: "-j"
|
||||
format: "flag"
|
||||
- name: "proxy"
|
||||
type: "string"
|
||||
description: "代理地址(http(s):// 或 socks5://)"
|
||||
required: false
|
||||
flag: "--proxy"
|
||||
format: "flag"
|
||||
- name: "timeout"
|
||||
type: "string"
|
||||
description: "网络超时时间(秒,可为小数)"
|
||||
required: false
|
||||
flag: "--timeout"
|
||||
format: "flag"
|
||||
- name: "follow_redirects"
|
||||
type: "bool"
|
||||
description: "是否自动跟随重定向"
|
||||
required: false
|
||||
flag: "--follow-redirects"
|
||||
format: "flag"
|
||||
default: false
|
||||
- name: "status_code"
|
||||
- name: "no_verify"
|
||||
type: "bool"
|
||||
description: "显示状态码"
|
||||
description: "关闭TLS证书校验(对应 --no-verify)"
|
||||
required: false
|
||||
flag: "-sc"
|
||||
flag: "--no-verify"
|
||||
format: "flag"
|
||||
default: false
|
||||
- name: "content_length"
|
||||
- name: "http2"
|
||||
type: "bool"
|
||||
description: "显示内容长度"
|
||||
description: "启用HTTP/2"
|
||||
required: false
|
||||
flag: "-cl"
|
||||
flag: "--http2"
|
||||
format: "flag"
|
||||
default: false
|
||||
- name: "title"
|
||||
type: "bool"
|
||||
description: "显示页面标题"
|
||||
- name: "download"
|
||||
type: "string"
|
||||
description: "将响应内容保存至文件"
|
||||
required: false
|
||||
flag: "-title"
|
||||
flag: "--download"
|
||||
format: "flag"
|
||||
- name: "verbose"
|
||||
type: "bool"
|
||||
description: "显示请求与响应的详细信息"
|
||||
required: false
|
||||
flag: "-v"
|
||||
format: "flag"
|
||||
default: false
|
||||
- name: "web_server"
|
||||
type: "bool"
|
||||
description: "显示Web服务器"
|
||||
required: false
|
||||
flag: "-server"
|
||||
format: "flag"
|
||||
default: false
|
||||
- name: "threads"
|
||||
type: "int"
|
||||
description: "线程数"
|
||||
required: false
|
||||
flag: "-t"
|
||||
format: "flag"
|
||||
default: 50
|
||||
- name: "additional_args"
|
||||
type: "string"
|
||||
description: |
|
||||
额外的HTTPx参数。用于传递未在参数列表中定义的HTTPx选项。
|
||||
额外 httpx CLI 选项,格式直接与官方命令保持一致。
|
||||
|
||||
**示例值:**
|
||||
- "-o output.txt": 输出到文件
|
||||
- "-json": JSON格式输出
|
||||
- "-silent": 安静模式
|
||||
- "-rate-limit 100": 限制请求速率
|
||||
|
||||
**注意事项:**
|
||||
- 多个参数用空格分隔
|
||||
- 确保参数格式正确,避免命令注入
|
||||
- 此参数会直接追加到命令末尾
|
||||
**示例:**
|
||||
- "--headers 'X-Test 1' 'X-Token secret'"
|
||||
- "--cookies 'session abc123'"
|
||||
- "--auth user pass"
|
||||
required: false
|
||||
format: "positional"
|
||||
|
||||
Reference in New Issue
Block a user