Full TCP Nmap Scan - honwhitehat/personal-toolbox-public GitHub Wiki
Command
nmap -p- -sS -T4 <target>
What it does
Scans all TCP ports quickly using a SYN scan (-sS
) with a faster timing template (-T4
).
Notes
- Replace
<target>
(IP or hostname). - Add
-Pn
if host discovery is limited. - Use responsibly and with authorization.
Related