用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Zyrexnn/Cybermes --skill recon命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Autonomous end-to-end security research and full-surface bug hunting engine. Executes non-stop reconnaissance, attack-surface discovery, parameter mining, multi-stage vulnerability verification, minimal-impact PoC generation, and structured reporting on authorized targets.
Generates standardized, professional Bug Bounty vulnerability reports in markdown format following HackerOne and Bugcrowd standards.
Workspace conventions for authorized security-engagement deliverables — canonical report location (/workspace/reports/<target>/), plain files not zip, follow-the-existing-format rule, report-aggregator overwrite trap, bypass-before-clear validation gate for negative claims, and Cloudflare UA pitfalls in PoC reproduction. Use at report-writing time or before declaring any control "secure".
基于 SOC 职业分类
正在显示 SKILL.md
| name | recon |
| description | Orchestrates scoped subdomain enumeration, DNS resolution, and active web probing for bug bounty targets. |
Perform initial reconnaissance and asset mapping strictly within the authorized target scope.
subfinder to discover subdomains for the requested target:
mkdir -p /workspace/recon/<target>
subfinder -d <target> -silent -o /workspace/recon/<target>/subfinder.txt
echo "<target>" >> /workspace/recon/<target>/subfinder.txt
sort -u /workspace/recon/<target>/subfinder.txt -o /workspace/recon/<target>/in_scope.txt
dnsx to resolve A, CNAME, and AAAA records:
dnsx -l /workspace/recon/<target>/in_scope.txt -silent -o /workspace/recon/<target>/resolved.txt
httpx to probe live web servers, extract status codes, page titles, and web tech stack:
httpx -l /workspace/recon/<target>/resolved.txt -silent -title -status-code -tech-detect -json -o /workspace/recon/<target>/httpx.json
/workspace/recon/<target>/subfinder.txt - Raw discovered subdomains/workspace/recon/<target>/in_scope.txt - Validated in-scope hosts/workspace/recon/<target>/resolved.txt - Live DNS resolving hosts/workspace/recon/<target>/httpx.json - HTTP probe results with web technologies