Port Scanning
Prerequisites ==> Learn all the common flags
in nmap :)
Fragment Scan ==> IP fragmentation in networking is a method to present large data grams into chunks. It is mainly used to bypass or create difficulty to some IDS to detect what is happening.
If we observe this in Wireshark, we can notice a simple SYN packet was sent and in return we obtained SYN-ACK packets.
If we watch this in Wireshark, Our SYN-TCP scan would be displayed in the end before that all our fragmented packets would be displayed (IPv4), Each packet is of 72 bytes
and our nmap scan divides each packet data length into 8 bytes
(Since we've used the -f
flag), So applying basic mathematics we get to know only 9 packets
would be shown (72 divided by 8) including the TCP packets.
Some reputed organization's IDS blocks all nmap scans, So it's very important to switch between the tools !
Using Decoy scans to bypass Firewalls
Scanning all 65535 ports
Last updated