Created
September 5, 2017 17:29
-
-
Save YourFriendCaspian/7aa1aaa3a5cdbb40d6b2183182e8ba51 to your computer and use it in GitHub Desktop.
Basic Scanning with Nmap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Basic Scanning with Nmap ## | |
#Discovery Scans: | |
nmap -v -n -PE <target> | |
nmap -v -n -PE -PO -PM -PP <target> | |
nmap -v -n -PS21-23,25,53,80,443,3389 -PO -PE -PM -PP <target> | |
#Detailed TCP Scans: | |
nmap -v -sS -A --top-ports 10 -oA filename <target> | |
nmap -v -sS -A -F -oA filename <target> | |
nmap -v -sS -A -oA filename <target> | |
nmap -v -sS -A -p 1-65535 -oA filename <target> | |
#Detailed UDP Scans: | |
nmap -v -sU -A --top-ports 10 -oA filename <target> | |
nmap -v -sU -A -F -oA filename <target> | |
nmap -v -sU -A -oA filename <target> | |
nmap -v -sU -A -p 1-65535 -oA filename <target> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment