Skip to content

Instantly share code, notes, and snippets.

@dejisec
Last active July 19, 2024 16:49
Show Gist options
  • Save dejisec/7ab932fe429e892838a4e430ea65fe29 to your computer and use it in GitHub Desktop.
Save dejisec/7ab932fe429e892838a4e430ea65fe29 to your computer and use it in GitHub Desktop.
Nmap Scans

Quick TCP

nmap -sC -sV -vv -oA quick_tcp 10.10.10.10

UDP

nmap -sU -sV -vv -oA udp 10.10.10.10

Full TCP

nmap -sC -sV -p- -vv -oA full 10.10.10.10

Port Knock

for x in 7000 8000 9000; do nmap -Pn --host_timeout 201 --max-retries 0 -p $x 10.10.10.10; done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment