-
-
Notifications
You must be signed in to change notification settings - Fork 791
/
test-ip-wordlist.sh
executable file
·130 lines (100 loc) · 2.38 KB
/
test-ip-wordlist.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
#!/bin/bash
source myutils.sh
function usage() {
echo "Usage: "$0" <start ip> <end ip> <wordlist> [<port>] [<force ssl>]"
if [ -n "$1" ] ; then
echo "Error: "$1"!"
fi
exit
}
function testip() {
i=$1
ip=$2
# 0.0.0.0/0.255.255.255 , 10.0.0.0/10.255.255.255 , 172.16.0.0/172.31.255.255 , 192.168.0.0/192.168.255.255
if ( [ $i -ge 0 ] && [ $i -le 16777215 ] ) || ( [ $i -ge 167772160 ] && [ $i -le 184549375 ] ) || ( [ $i -ge 2886729728 ] && [ $i -le 2887778303 ] ) || ( [ $i -ge 3232235520 ] && [ $i -le 3232301055 ] ) ; then
echo 0
return
fi
ip2=$(echo $ip | tr '.' ' ')
for n in $ip2 ; do
if [ $n -eq 0 ] || [ $n -eq 254 ] || [ $n -eq 255 ] ; then
echo 0
return
fi
done
echo 1
return
}
if [ $# -lt 3 ] || [ $# -gt 5 ] ; then
usage
fi
wordlist=$3
if [ ! -f $wordlist ] ; then
usage "File not found!"
fi
if [ $# -ge 4 ] ; then
port=$4
else
port=80,443
fi
tport=$(echo $port|tr ',' " ")
if [ $# -eq 5 ] ; then
ssl=1
else
ssl=0
fi
start=$1
start_n=`ip2dec $start`
end=$2
end_n=`ip2dec $end`
if [ $end_n -lt $start_n ] ; then
tmp=$start
start=$end
end=$tmp
tmp=$start_n
start_n=$end_n
end_n=$tmp
fi
i=$(( $start_n - 1 ))
while [ $i -lt $end_n ] ; do
i=$(( $i + 1 ))
ip=`dec2ip $i`
isvalid=$(testip $i $ip)
#isvalid=1
if [ $isvalid -eq 0 ] ; then
continue
fi
for p in $tport ; do
if [ "$ssl" -eq "0" ] && [ ! "$p" -eq "443" ] ; then
proto="http"
else
proto="https"
fi
if [ "$p" -eq "80" ] || [ "$p" -eq "443" ] ; then
url="$proto://$ip"
else
url="$proto://$ip:$p"
fi
# echo $url
output=`curl -k -s --connect-timeout 2 -I $url`
res=`echo $output | grep 'HTTP/1.1 200 OK'`
echo "Connecting: $url"
if [ ! -n "$res" ] ; then
_print "Skipping..."
echo
else
for w in $(cat $wordlist) ; do
w_url="$url/$w"
output=`curl -k -s --connect-timeout 2 -I $w_url`
res=`echo $output | grep 'HTTP/1.1 200 OK'`
_print "Testing: $w_url"
if [ -n "$res" ] ; then
_print " FOUND!" GREEN
fi
echo
done
fi
done
echo
done
exit