notes/Enumeration Methodology
$ cat enumeration-methodology.md
Enumeration Methodology
Initial TCP Scan
Start broad, then follow up with service-specific probes.
nmap -p- --min-rate 5000 -oN scans/all-ports.txt TARGET
Service Scan
nmap -sCV -p PORTS -oN scans/services.txt TARGET
Notes
- Record exact versions.
- Check anonymous access before authentication attempts.
- Keep commands reproducible.