NMAP FOR RECONNAISSANCE #2
Hello this is virtual . In the last tutorial I taught you the basic uses of Nmap . This is a continuation of the previous post concentrating on some advanced uses of Nmap .
1.Zenmap : This is a GUI of Nmap . To access it type ' zenmap ' in the Terminal [in root] . It is much easy for beginners and is interactive .
2.Scan for an entire subnet :
Let me give an example.If you want to scan for entire Class C subnet with port 80 open type
nmap <ip>/24 -p 80
Eg. nmap 192.168.0.1/24 -p 80
3.Evading Intrusion Detection System : Most commercial servers have Intrusion Detecting System which alerts the system administrator in case of malicious activity . The best way to evade them is to slow down the speed to sneaky speed setting of Nmap.
Eg. nmap -sS -T2 192.168.0.3
-T2 instructs Nmap to use sneaky speed setting.
[The scan will take more time than original { without -T2} ]

You can clearly see how much time the scan took!!!

Comments
Post a Comment