What problem does it solve?
Scanning large network ranges with traditional tools like nmap is slow and impractical for /16 or larger CIDR blocks. This Skill provides a structured methodology for using masscan, an asynchronous stateless scanner capable of millions of packets per second, to rapidly discover open ports across massive network segments.
Core Features & Use Cases
- Large-Scale Scanning: Scan /16 or /8 CIDR ranges, full port ranges (0-65535), or internet-scale targets with tunable packet rates.
- Flexible Output Formats: Export results in List, JSON, nmap-compatible XML, or grepable formats for downstream toolchains.
- Advanced Options: Banner grabbing, interface/source-IP selection, exclude files, and pause/resume for long-running scans.
- Use Case: During an internal penetration test, run
sudo masscan 10.0.0.0/16 -p 22,80,443,3389 --rate 10000 -oL results.txt to quickly map live services, then feed the results to nmap -sV for service identification.
Quick Start
Ask the AI to scan the 10.0.0.0/24 network for common web ports using masscan and save the results to a list file.