cyberlab
notes/Enumeration Methodology

$ cat enumeration-methodology.md

Enumeration Methodology

Jun 15, 2026 A repeatable first pass for new targets.
#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.