recon-port-scan
recon-port-scan enables port discovery and service identification across target hosts using industry-standard tools. Execute fast common-port scans, comprehensive port-range sweeps, service version detection, stealth scanning, UDP discovery, OS fingerprinting, and high-speed mass scanning workflows.
recon-port-scan discovers open ports and identifies running services using nmap, masscan, and rustscan.
AI-generated summary based on this skill's SKILL.md
Install
crazyMarky/pentest-skills/recon-port-scan · repository language: Python
git clone https://github.com/crazyMarky/pentest-skills
cp -r pentest-skills/recon-port-scan ~/.claude/skills/recon-port-scannpx skillfed install crazyMarky/pentest-skills/recon-port-scanFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What can recon-port-scan do for network reconnaissance?
recon-port-scan enables port discovery and service identification across target hosts using industry-standard tools. You can execute fast common-port scans, comprehensive port-range sweeps, service version detection, stealth scanning, UDP discovery, OS fingerprinting, and high-speed mass scanning workflows to map your infrastructure.
How do I find open ports on a server with recon-port-scan?
recon-port-scan supports multiple scanning approaches to discover open ports. You can run quick scans of common ports, perform full port-range sweeps across all 65535 ports, execute UDP port discovery, or use high-speed mass scanning for large IP ranges. Choose the method that fits your target scope and time constraints.
Does recon-port-scan support service version detection?
Yes, recon-port-scan includes service version detection capabilities. Beyond identifying which ports are open, it can fingerprint running services and detect operating system signatures on target systems, giving you detailed visibility into what's actually running on discovered ports.
Can recon-port-scan perform stealth port scanning?
recon-port-scan supports stealth scanning techniques to minimize detection risk during authorized network reconnaissance. This allows you to conduct infrastructure mapping while reducing your scanning footprint on target systems.
What tools does recon-port-scan use for fast scanning?
recon-port-scan leverages industry-standard tools including nmap for comprehensive scanning and service detection, masscan for high-speed large-network sweeps, and rustscan for fast port discovery. These tools enable efficient scanning across large IP ranges while maintaining accuracy in service identification.
Is recon-port-scan suitable for authorized network reconnaissance?
Yes, recon-port-scan is designed for authorized network reconnaissance and infrastructure mapping. It enables security teams to perform legitimate port discovery, service enumeration, and OS fingerprinting as part of authorized security assessments and network administration tasks.
SKILL.md
rendered from the published skill — quoted content, verbatim
Port Scanning / Reconnaissance
Authorization Warning
IMPORTANT: Port scanning without proper authorization is illegal. Always ensure you have: - Written permission from the target system owner - Defined scope of authorized testing - Legal compliance with local regulations
Prerequisites
Required tools that must be installed on your system:
- nmap - sudo apt install nmap (Debian/Ubuntu) or brew install nmap (macOS)
Optional tools: - masscan - High-speed port scanner - rustscan - Modern fast scanner with nmap integration
Quick Start
Most commonly used commands for port scanning:
Fast Common Port Scan
nmap -T4 -F <target>
Quick scan of top 100 common ports.
Full Port Scan with Service Detection
nmap -sV -sC -p- <target>
Scan all 65535 ports with version detection and default scripts.
Stealth SYN Scan
```bash sudo nmap -sS -T2 -p-
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 12 files
recon-port-scan/SKILL.md
recon-port-scan/assets/common-services.txt
recon-port-scan/assets/top-100-ports.txt
recon-port-scan/assets/top-1000-ports.txt
recon-port-scan/references/masscan_guide.md
recon-port-scan/references/nmap_cheatsheet.md
recon-port-scan/references/rustscan_guide.md
recon-port-scan/references/scanning_techniques.md
recon-port-scan/scripts/masscan_to_nmap.py
recon-port-scan/scripts/merge_scan_results.py
recon-port-scan/scripts/parse_nmap_xml.py
recon-port-scan/scripts/port_scan_storage.py