Service Enumeration
get status message of nmap scan every 5 sec
sudo nmap 10.129.2.28 -p- -sV --stats-every=5sget a message the moment the open port is found
sudo nmap 10.129.2.28 -p- -sV -vBanner grabbing
with nmap
sudo nmap 10.129.2.28 -p- -sVbut nmap sometimes does not handle the info well
so we can mannualy connect using nc , grab the banner, and intercept network traffic with tcpdump in the background (first set up tcpdump and than connect with nc)
with nc
nc -nv 10.129.2.28 25intercept the network traffic with tcpdump
sudo tcpdump -i eth0 host 10.10.14.2 and 10.129.2.28Last updated

