Skip to content

Latest commit

 

History

History
61 lines (37 loc) · 1.27 KB

File metadata and controls

61 lines (37 loc) · 1.27 KB

Task 7 - Scanning Time!

Task 7 - Scanning Time!

Try running the scan for all ports.

rustscan -a MACHINE_IP --range 1-65535

{% hint style="warning" %} HINT: 65535 ports are there! {% endhint %}

{% hint style="success" %} No answer needed {% endhint %}

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.

{% hint style="success" %} No answer needed {% endhint %}