mcpbeat Sign in

Strix•httpx 用法 Agent Skill

Strix httpx 探测命令手册,覆盖探针参数、输出格式与自动化安全用法;触发名:strix-httpx

807 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
715
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/asdfgh1445/ctf-super-hub --skill Strix•httpx 用法

The instruction itself

1 sections, as written by the author

httpx CLI Playbook

Official docs:

  • https://docs.projectdiscovery.io/opensource/httpx/usage
  • https://docs.projectdiscovery.io/opensource/httpx/running
  • https://github.com/projectdiscovery/httpx

Canonical syntax:

httpx [flags]

High-signal flags:

  • -u, -target <url> single target
  • -l, -list <file> target list
  • -nf, -no-fallback probe both HTTP and HTTPS
  • -nfs, -no-fallback-scheme do not auto-switch schemes
  • -sc status code
  • -title page title
  • -server, -web-server server header
  • -td, -tech-detect technology detection
  • -fr, -follow-redirects follow redirects
  • -mc <codes> / -fc <codes> match or filter status codes
  • -path <path_or_file> probe specific paths
  • -p, -ports <ports> probe custom ports
  • -proxy, -http-proxy <url> proxy target requests
  • -tlsi, -tls-impersonate experimental TLS impersonation
  • -j, -json JSONL output
  • -sr, -store-response store request/response artifacts
  • -srd, -store-response-dir <dir> custom directory for stored artifacts
  • -silent compact output
  • -rl <n> requests/second cap
  • -t <n> threads
  • -timeout <seconds> request timeout
  • -retries <n> retry attempts
  • -o <file> output file

Agent-safe baseline for automation:

httpx -l hosts.txt -sc -title -server -td -fr -timeout 10 -retries 1 -rl 50 -t 25 -silent -j -o httpx.jsonl

Common patterns:

  • Quick live+fingerprint check:

httpx -l hosts.txt -sc -title -server -td -silent -o httpx.txt

  • Probe known admin paths:

httpx -l hosts.txt -path /,/login,/admin -sc -title -silent -j -o httpx_paths.jsonl

  • Probe both schemes explicitly:

httpx -l hosts.txt -nf -sc -title -silent

  • Vhost detection pass:

httpx -l hosts.txt -vhost -sc -title -silent -j -o httpx_vhost.jsonl

  • Proxy-instrumented probing:

httpx -l hosts.txt -sc -title -proxy http://127.0.0.1:48080 -silent -j -o httpx_proxy.jsonl

  • Response-storage pass for downstream content parsing:

httpx -l hosts.txt -fr -sr -srd recon/httpx_store -sc -title -server -cl -ct -location -probe -silent

Critical correctness rules:

  • For machine parsing, prefer -j -o <file>.
  • Keep -rl and -t explicit for reproducible throughput.
  • Use -nf when you need dual-scheme probing from host-only input.
  • When using -path or -ports, keep scope tight to avoid accidental scan inflation.
  • Use -sr -srd <dir> when later steps need raw response artifacts (JS/route extraction, grepping, replay).

Usage rules:

  • Use -silent for pipeline-friendly output.
  • Use -mc/-fc when downstream steps depend on specific response classes.
  • Prefer -proxy flag over global proxy env vars when only httpx traffic should be proxied.
  • Do not use -h/--help for routine runs unless absolutely necessary.

Failure recovery:

  • If too many timeouts occur, reduce -rl/-t and/or increase -timeout.
  • If output is noisy, add -fc filters or -fd duplicate filtering.
  • If HTTPS-only probing misses HTTP services, rerun with -nf (and avoid -nfs).

If uncertain, query web_search with:

site:docs.projectdiscovery.io httpx <flag> usage

Other skills for the same job

different authors, same section of the catalogue
Backend Security Coder
by ComeOnOliver
×2

Expert in secure backend coding practices specializing in input validation, authentication, and API security. Use PROACTIVELY for backend security implementations or security code reviews.

5k tokens
Cloud Penetration Testing
by ComeOnOliver
×2

This skill should be used when the user asks to "perform cloud penetration testing", "assess Azure or AWS or GCP security", "enumerate cloud resources", "exploit cloud misconfigurations", "test O365 security", "extract secrets from cloud environments", or "audit cloud infrastructure". It provides comprehensive techniques for security assessment across major cloud platforms.

16k tokens
Codebase Cleanup Deps Audit
by ComeOnOliver
×2

You are a dependency security expert specializing in vulnerability scanning, license compliance, and supply chain security. Analyze project dependencies for known vulnerabilities, licensing issues, outdated packages, and provide actionable remediation strategies.

10k tokens
Flow Nexus Platform
by ComeOnOliver
×2

Comprehensive Flow Nexus platform management - authentication, sandboxes, app deployment, payments, and challenges

14k tokens
Linux Privilege Escalation
by ComeOnOliver
×2

This skill should be used when the user asks to "escalate privileges on Linux", "find privesc vectors on Linux systems", "exploit sudo misconfigurations", "abuse SUID binaries", "exploit cron jobs for root access", "enumerate Linux systems for privilege escalation", or "gain root access from low-privilege shell". It provides comprehensive techniques for identifying and exploiting privilege escalation paths on Linux systems.

8k tokens
Malware Analyst
by ComeOnOliver
×2

Expert malware analyst specializing in defensive malware research, threat intelligence, and incident response. Masters sandbox analysis, behavioral analysis, and malware family identification. Handles static/dynamic analysis, unpacking, and IOC extraction. Use PROACTIVELY for malware triage, threat hunting, incident response, or security research.

4k tokens
Metasploit Framework
by ComeOnOliver
×2

This skill should be used when the user asks to "use Metasploit for penetration testing", "exploit vulnerabilities with msfconsole", "create payloads with msfvenom", "perform post-exploitation", "use auxiliary modules for scanning", or "develop custom exploits". It provides comprehensive guidance for leveraging the Metasploit Framework in security assessments.

7k tokens
Mobile Security Coder
by ComeOnOliver
×2

Expert in secure mobile coding practices specializing in input validation, WebView security, and mobile-specific security patterns. Use PROACTIVELY for mobile security implementations or mobile security code reviews.

6k tokens

How to use it

Copy the folder

Take asdfgh1445/strix•httpx 用法 from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.