-
Notifications
You must be signed in to change notification settings - Fork 0
/
enum.sh
241 lines (221 loc) · 3.75 KB
/
enum.sh
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
printf " Automatically Check dependencies and Install "
a1=("hydra" "nmap" "dnsenum")
i=0
while [ $i -lt 4 ]
do
if ! which ${a1[$i]} > /dev/null; then
sudo apt install ${a1[$i]} >/dev/null 2>&1
fi
i=`expr $i + 1`
done
clear
int=""
hello ()
{
printf "\nEnter the website or ip to enumeration\t "
read ip
if [ "$ip" = "" ]
then
printf "Please enter the website or ip to enumeration"
fi
}
hello1 ()
{
if [ "$ip" != "" ]
then
printf "\nEnter port number or port name to scan\t"
read port
if [ "$port" = "" ]
then
printf "\nPlease enter the port number or port name\t"
fi
fi
}
hello2 ()
{
if [ "$port" != "" ]
then
printf "\nEnter the script name "
read scr
if [ "$scr" = "" ]
then
printf "\nPlease Enter the script "
fi
fi
}
up() {
if [[ "$user2" != *".txt"* ]] && [[ "$pass2" != *".txt"* ]]
then
hydra -l $user2 -p $pass2 $ip $int
fi
}
upf() {
if [[ "$user2" != *".txt"* ]] && [[ "$pass1" = *".txt"* ]]
then
hydra -l $user2 -P $pass1 $ip $int
fi
}
ufp() {
if [[ "$user1" = *".txt"* ]] && [[ "$pass2" != *".txt"* ]]
then
hydra -L $user1 -p $pass2 $ip $int
fi
}
ufpf() {
if [[ "$user1" = *".txt"* ]] && [[ "$pass1" = *".txt"* ]]
then
hydra -L $user1 -P $pass1 $ip $int
fi
}
while [ true ]
do
printf "\t\t\t Enumeration \n\n\n1 Nmap Script Engine\n2 Nmap Script Engine with port\n3 Nmap Script Engine with Script name\n4 Nmap Script Engine with Script name with port\n5 Dnsenum\n6 FTP Login\n7 SSH Login\n8 Hydra Tool\n9 Clear\n10 Exit "
printf "\n\nEnter the choice\t"
read ch
case "$ch" in
"1")
hello
if [ "$ip" != "" ]
then
nmap -sC $ip
read -t 1000
fi
;;
"2")
hello
hello1
if [ "$port" != "" ]
then
nmap -sC -p$port $ip
read -t 1000
fi
;;
"3")
hello
hello2
if [ "$scr" != "" ]
then
nmap -script $scr $ip
read -t 1000
fi
;;
"4")
hello
hello1
hello2
if [ "$scr" != "" ]
then
nmap -p $port -script $scr $ip
read -t 1000
fi
;;
"5")
hello
if [ "$ip" != "" ]
then
dnsenum $ip
read -t 1000
fi
;;
"6")
hello
if [ "$ip" != "" ]
then
ftp $ip
read -t 1000
fi
;;
"7")
hello
if [ "$ip" != "" ]
then
printf " Enter the username of ssh "
read user
if [ "$user" = "" ]
then
printf " Please enter the username of ssh "
else
ssh $user@$ip
read -t 1000
fi
fi
;;
"8")
hello
while [ true ]
do
int=""
printf "\nChoose Below Login Credentials\n1 SSH\n2 Telnet\n3 FTP\n4 Exit\t"
read ch1
case "$ch1" in
"1")
int="ssh -t 4"
break
;;
"2")
int="telnet"
break
;;
"3")
int="ftp"
break
;;
"4")
break
;;
*)
printf " Invalid Choice "
read -t 1000
;;
esac
done
user1=""
user2=""
pass1=""
pass2=""
if [ "$ip" != "" ] && [ "$int" != "" ]
then
printf " Enter the username or enter the username file with .txt "
read user
printf " Enter the password or enter password file with .txt "
read pass
if [ "$user" = "" ] || [ "$pass" = "" ]
then
printf " Please enter the username or password or file with .txt "
else
if [ "$user" != "" ] && [[ "$user" = *".txt"* ]]
then
user1=$user
else
user2=$user
fi
if [ "$pass" != "" ] && [[ "$pass" = *".txt"* ]]
then
pass1=$pass
else
pass2=$pass
fi
if [ "$user1" != "" ] || [ "$user2" != "" ]
then
up
upf
ufp
ufpf
fi
fi
else
printf "\nPlease Choose the login Credentials\n "
fi
;;
"9")
clear
;;
"10")
exit
;;
*)
echo " Please Choose correct option "
read -t 1000
;;
esac
done