Introduction to Nmap
This video is an introduction to Nmap.
Intro 0:00 Installation 0:31 Reverse DNS Lookup 0:59 Ping Sweep 1:50 Exclude an Address 2:34 Scanning from a List 3:24 Saving Output 3:59 Basic Port Scan 5:52 Service Scan 6:44 UDP Scan 7:34 Verbosity and Scan Speed 8:09 NSE - Default Scripts 9:24 NSE - http-Malware-host 11:09 Outro 11:58
Install nmap $ sudo apt update && sudo apt install nmap
Check version $ nmap --version
scan every IP in network block and do a reverse DNS lookup $ nmap -sL 192.168.1.0/24
Ping sweep a network $ nmap -sn --open 192.168.1.0/24
Exclude an IP address $ nmap -p 192.168.1.0/24 --exclude 192.168.1.1
Save output $ nmap -oA output scanme.nmap.org
Scan from a list $ nmap -iL iplist.txt
Adjust scan speed (-T3 is default) $ nmap -T4 scanme.nmap.org
Detect services that are running $ nmap -sV scanme.nmap.org
Scan TCP and UDP ports $ nmap -sT -sU scanme.nmap.org
Scan with defautl 'safe' scripts $ nmap -sV -sC scanme.nmap.org
A common malware scan can be performed by using $ nmap -sV --script=http-malware-host 192.168.1.105
Scritps are located at /usr/share/nmap/scripts/
Follow me: SecureRandom on YouTube - https://www.youtube.com/channel/UCZuW...
SecureRandom on LBRY / Odysee - https://odysee.com/@SecureRandom:1
217501639 Bytes