-
Notifications
You must be signed in to change notification settings - Fork 1
/
force
executable file
·37 lines (34 loc) · 874 Bytes
/
force
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
teste=0
test -f "/usr/bin/hydra" || teste=1
if [ teste == 1 ]
then
sudo apt-get install hydra
else
clear
echo "************************************"
echo "* *"
echo "* *"
echo "* *"
echo "* *"
echo "* HYDRA - FORCE *"
echo "* <-----> *"
echo "* *"
echo "* . *"
echo "* *"
echo "* *"
echo "************************************"
echo ""
echo ""
echo "Alvo:"
read ALVO
echo "Login"
read LOGIN
echo "Wordlist"
read WORDLIST
echo "Estilo(ftp,ssh,etc):"
read ESTILO
echo "Arquivo de saida: "
read SAIDA
hydra -l $LOGIN -P $WORDLIST -o $SAIDA $ALVO $ESTILO
fi