Task 7 - Scanning Time!
Task 7 - Scanning Time!
Try running the scan for all ports.
rustscan -a MACHINE_IP --range 1-65535
HINT: 65535 ports are there!
No answer needed
After scanning this, how many ports do we find open under 1000?
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
Perform an aggressive scan, what flag isn't set under the results for port 80?
rustscan -a MACHINE_IP -p 80 -- -A
Using this tool in scanning can save a lot of time! Make sure to use it in your pentest.
No answer needed
Last updated