← Back to Academy

Academy Node

Nmap Full Scan

Initial broad TCP scan to identify attack surface.

Beginner100 XPOSCP Workflow

Why it matters

Missing one service can kill an exam path.

How to identify it

  • Target IP obtained

Linux commands

nmap -p- --min-rate 10000 -T4 TARGET -oA fullscan
nmap -sCV -p PORTS TARGET -oA services

Expected output

  • Open ports
  • Service versions

Success looks like

  • Attack surface identified

Failure looks like

  • Filtered ports
  • Missing services

Troubleshooting

  • Run UDP later

Common mistakes

  • Skipping full port scan

What to try next

  • SMB enum
  • Web enum
  • LDAP enum

Recommended next lessons