June 2018
Intermediate to advanced
294 pages
7h 5m
English
In the preceding step, we used the Nmap script to quickly probe each service that we found. In this step, we will take this information to the next step and try to probe aggressively. The Nmap scripts that we will use in the following examples are both very aggressive and time-consuming:
nmap -sV -p 21 -Pn -T5 --host-timeout 15m --script=ftp* -v [IP address]
hydra -t 10 -V -f -L [users dic file path] -P [passwords dic file path] ftp://[IP address]
nmap -sV -p 22 -Pn -T5 --host-timeout 15m --script=ssh* -v [IP address]
hydra -t 10 -V -f -L [users dic file path] ...
Read now
Unlock full access