Task 7 - Scanning Time!

Task 7 - Scanning Time!

Try running the scan for all ports.

rustscan -a MACHINE_IP --range 1-65535

After scanning this, how many ports do we find open under 1000?

Reveal Flag 🚩

🚩2

Perform a service version detection scan, what is the version of the software running on port 22?

rustscan -a MACHINE_IP --range 1-65535 -- -sV
Reveal Flag 🚩

🚩6.6.1p1

Perform an aggressive scan, what flag isn't set under the results for port 80?

rustscan -a MACHINE_IP -p 80 -- -A
Reveal Flag 🚩

🚩httponly

Using this tool in scanning can save a lot of time! Make sure to use it in your pentest.

Last updated