Class 2 Lab 2 ‐ Scanning with Masscan - Justin-Boyd/Ethical-Hacking-Class GitHub Wiki
Task 1: WAN Scanning
Step 1
- Start the Kali machine and use the appropriate SIP to set VirtualBox NIC to Bridged Adapter, and set Kali to accept IP from DHCP.
Step 2
- Discover the scanme.nmap.org IP address.
nslookup scanme.nmap.org
Step 3
- Use Masscan to scan port 80 on the discovered IP address.
masscan 45.33.32.156 -p80
Task 2: Wireshark Examination
Step 1
- Start a scan with Wireshark
Step 2
- Use Masscan to scan for an open 80 port at the IP address of scanme.nmap.org that you discovered in the previous task.
Step 3
- In Wireshark, display only the SYN and ACK packets.
tcp.flags.syn==1 && tcp.flags.ack==1