用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/CommonHuman-Lab/nyxstrike --skill nmap-recon命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | nmap-recon |
| description | Network reconnaissance workflow using nmap, masscan, and rustscan via NyxStrike tools |
Step-by-step network reconnaissance skill for NyxStrike. Use this skill when a user asks to scan a host, discover open ports, enumerate services, or perform OS detection.
Start with a fast sweep to identify open ports before running detailed scans.
rustscan for speed on a single target.masscan for large CIDR ranges.run_tool(tool="rustscan", target="<target>", ports="1-65535")
Run nmap against the open ports discovered in step 1 to enumerate services, versions, and scripts.
run_tool(tool="nmap", target="<target>", ports="<open_ports>", flags="-sV -sC -O")
Useful nmap flag combinations:
| Goal | Flags |
|---|---|
| Service + version detection | -sV |
| Default NSE scripts | -sC |
| OS detection | -O |
| Aggressive (all of the above + traceroute) | -A |
| UDP scan | -sU |
| Full port range | -p- |
If specific services are found, run targeted NSE scripts for deeper enumeration.
| Service | Suggested scripts |
|---|---|
| SMB (445) | --script smb-vuln-*,smb-enum-shares |
| HTTP (80/443) | --script http-title,http-headers,http-methods |
| FTP (21) | --script ftp-anon,ftp-bounce |
| SSH (22) | --script ssh-hostkey,ssh-auth-methods |
| SNMP (161/udp) | --script snmp-info,snmp-interfaces |
run_tool(tool="nmap_advanced", target="<target>", ports="<port>", scripts="<script_list>")
For targets on the same subnet, use arp_scan to identify live hosts before deeper scanning.
run_tool(tool="arp_scan", target="<subnet_cidr>")
-T3 (default timing) and increase to -T4 only on reliable networks.-oN, -oX, or -oG flags for later analysis; pass via the output_file parameter where supported.| Tool | Use case |
|---|---|
nmap | Service/version/script scanning |
nmap_advanced | NSE script targeting |
masscan | High-speed large-range port sweep |
rustscan | Fast single-target port discovery |
arp_scan | Local subnet host discovery |