Task 14 - Practical

Task 14 Practical

Does the target (MACHINE_IP)respond to ICMP (ping) requests (Y/N)?

ping MACHINE_IP
Reveal Flag 🚩

🚩N

Perform an Xmas scan on the first 999 ports of the target -- how many ports are shown to be open or filtered?

https://nmap.org/book/scan-methods-null-fin-xmas-scan.html
nmap -sX MACHINE_IP -p 1-999 
Reveal Flag 🚩

🚩999

There is a reason given for this -- what is it?

Note: The answer will be in your scan results. Think carefully about which switches to use -- and read the hint before asking for help!

Reveal Flag 🚩

🚩No Response

Perform a TCP SYN scan on the first 5000 ports of the target -- how many ports are shown to be open?

Reveal Flag 🚩

🚩5

Open Wireshark (see Cryillic's Wireshark Room for instructions) and perform a TCP Connect scan against port 80 on the target, monitoring the results. Make sure you understand what's going on.

Deploy the ftp-anon script against the box. Can Nmap login successfully to the FTP server on port 21? (Y/N)

Reveal Flag 🚩

🚩Y

Last updated