forked from EnableSecurity/sipvicious
-
Notifications
You must be signed in to change notification settings - Fork 0
/
svwar.py
executable file
·633 lines (607 loc) · 28.5 KB
/
svwar.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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
#!/usr/bin/env python
# svwar.py - SIPvicious extension line scanner
__GPL__ = """
Sipvicious extension line scanner scans SIP PaBXs for valid extension lines
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__ = 'svwar'
import socket
import select
import random
import logging
import time
class TakeASip:
def __init__(self,host='localhost',bindingip='',externalip=None,localport=5060,port=5060,
method='REGISTER',guessmode=1,guessargs=None,selecttime=0.005,
sessionpath=None,compact=False,socktimeout=3,initialcheck=True,
enableack=False,maxlastrecvtime=15, domain=None, printdebug=False,
):
from libs.svhelper import dictionaryattack, numericbrute, packetcounter
import logging
self.log = logging.getLogger('TakeASip')
self.maxlastrecvtime = maxlastrecvtime
self.sessionpath = sessionpath
self.dbsyncs = False
self.enableack = enableack
if self.sessionpath is not None:
self.resultauth = anydbm.open(os.path.join(self.sessionpath,'resultauth'),'c')
try:
self.resultauth.sync()
self.dbsyncs = True
self.log.info("Db does sync")
except AttributeError:
self.log.info("Db does not sync")
pass
else:
self.resultauth = dict()
self.sock = socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
self.sock.settimeout(socktimeout)
self.bindingip = bindingip
self.localport = localport
self.originallocalport = localport
self.rlist = [self.sock]
self.wlist = list()
self.xlist = list()
self.challenges = list()
self.realm = None
self.dsthost,self.dstport = host,int(port)
self.domain = self.dsthost
if domain:
self.domain = domain
self.guessmode = guessmode
self.guessargs = guessargs
if self.guessmode == 1:
self.usernamegen = numericbrute(*self.guessargs)
elif guessmode == 2:
self.usernamegen = dictionaryattack(self.guessargs)
self.selecttime = selecttime
self.compact=compact
self.nomore=False
self.BADUSER=None
self.method = method.upper()
if self.method == 'INVITE':
self.log.warn('using an INVITE scan on an endpoint (i.e. SIP phone) may cause it to ring and wake up people in the middle of the night')
if self.sessionpath is not None:
self.packetcount = packetcounter(50)
self.initialcheck = initialcheck
self.lastrecvtime = time.time()
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
self.printdebug = printdebug
# SIP response codes, also mapped to ISDN Q.931 disconnect causes.
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 '
RINGING = 'SIP/2.0 180 '
NOTALLOWED = 'SIP/2.0 405 '
UNAVAILABLE = 'SIP/2.0 480 '
DECLINED = 'SIP/2.0 603 '
INEXISTENTTRANSACTION = 'SIP/2.0 481'
# Mapped to ISDN Q.931 codes - 88 (Incompatible destination), 95 (Invalid message), 111 (Protocol error)
# If we get something like this, then most probably the remote device SIP stack has troubles with
# understanding / parsing our messages (a.k.a. interopability problems).
BADREQUEST = 'SIP/2.0 400 '
# Mapped to ISDN Q.931 codes - 34 (No circuit available), 38 (Network out of order), 41 (Temporary failure),
# 42 (Switching equipment congestion), 47 (Resource unavailable)
# Should be handled in the very same way as SIP response code 404 - the prefix is not correct and we should
# try with the next one.
SERVICEUN = 'SIP/2.0 503 '
def createRequest(self,m,username=None,auth=None,cid=None,cseq=1,fromaddr=None,toaddr=None,contact=None):
from base64 import b64encode
from libs.svhelper import makeRequest
from libs.svhelper import createTag
if cid is None:
cid='%s' % str(random.getrandbits(32))
branchunique = '%s' % random.getrandbits(32)
localtag=createTag(username)
if not contact:
contact = 'sip:%s@%s' % (username,self.domain)
if not fromaddr:
fromaddr = '"%s"<sip:%s@%s>' % (username,username,self.domain)
if not toaddr:
toaddr = '"%s"<sip:%s@%s>' % (username,username,self.domain)
request = makeRequest(
m,
fromaddr,
toaddr,
self.domain,
self.dstport,
cid,
self.externalip,
branchunique,
cseq,
auth,
localtag,
self.compact,
contact=contact,
localport=self.localport,
extension=username
)
return request
def getResponse(self):
from libs.svhelper import getNonce,getCredentials,getRealm,getCID,getTag
from base64 import b64decode
from libs.svhelper import parseHeader
from libs.svhelper import mysendto
import re
# we got stuff to read off the socket
from socket import error as socketerror
buff,srcaddr = self.sock.recvfrom(8192)
if self.printdebug:
print srcaddr
print buff
try:
extension = getTag(buff)
except TypeError:
self.log.error('could not decode to tag')
extension = None
if extension is None:
self.nomore = True
return
try:
firstline = buff.splitlines()[0]
except (ValueError,IndexError,AttributeError):
self.log.error("could not get the 1st line")
return
if self.enableack:
# send an ack to any responses which match
_tmp = parseHeader(buff)
if not (_tmp and _tmp.has_key('code')):
return
if 699 > _tmp['code'] >= 200:
self.log.debug('will try to send an ACK response')
if not _tmp.has_key('headers'):
self.log.debug('no headers?')
return
if not _tmp['headers'].has_key('from'):
self.log.debug('no from?')
return
if not _tmp['headers'].has_key('cseq'):
self.log.debug('no cseq')
return
if not _tmp['headers'].has_key('call-id'):
self.log.debug('no caller id')
return
try:
username = getTag(buff)#_tmp['headers']['from'][0].split('"')[1]
except IndexError:
self.log.warn('could not parse the from address %s' % _tmp['headers']['from'])
username = 'XXX'
cseq = _tmp['headers']['cseq'][0]
cseqmethod = cseq.split()[1]
if 'INVITE' == cseqmethod:
cid = _tmp['headers']['call-id'][0]
fromaddr = _tmp['headers']['from'][0]
toaddr = _tmp['headers']['to'][0]
ackreq = self.createRequest('ACK',
cid=cid,
cseq=cseq.replace(cseqmethod,''),
fromaddr=fromaddr,
toaddr=toaddr,
)
self.log.debug('here is your ack request: %s' % ackreq)
mysendto(self.sock,ackreq,(self.dsthost,self.dstport))
#self.sock.sendto(ackreq,(self.dsthost,self.dstport))
if _tmp['code'] == 200:
byemsg = self.createRequest('BYE',
cid=cid,
cseq='2',
fromaddr=fromaddr,
toaddr=toaddr,
)
self.log.debug('sending a BYE to the 200 OK for the INVITE')
mysendto(self.sock,byemsg,(self.dsthost,self.dstport))
if firstline != self.BADUSER:
if buff.startswith(self.PROXYAUTHREQ) \
or buff.startswith(self.INVALIDPASS) \
or buff.startswith(self.AUTHREQ):
if self.realm is None:
self.realm = getRealm(buff)
self.log.info("extension '%s' exists - requires authentication" % extension)
self.resultauth[extension] = 'reqauth'
if self.sessionpath is not None and self.dbsyncs:
self.resultauth.sync()
elif buff.startswith(self.TRYING):
pass
elif buff.startswith(self.RINGING):
pass
elif buff.startswith(self.OKEY):
self.log.info("extension '%s' exists - authentication not required" % extension)
self.resultauth[extension] = 'noauth'
if self.sessionpath is not None and self.dbsyncs:
self.resultauth.sync()
else:
self.log.warn("extension '%s' probably exists but the response is unexpected" % extension)
self.log.debug("response: %s" % firstline)
self.resultauth[extension] = 'weird'
if self.sessionpath is not None and self.dbsyncs:
self.resultauth.sync()
elif buff.startswith(self.NOTFOUND):
self.log.debug("User '%s' not found" % extension)
elif buff.startswith(self.INEXISTENTTRANSACTION):
pass
# Prefix not found, lets go to the next one. Should we add a warning here???
elif buff.startswith(self.SERVICEUN):
pass
elif buff.startswith(self.TRYING):
pass
elif buff.startswith(self.RINGING):
pass
elif buff.startswith(self.OKEY):
pass
elif buff.startswith(self.DECLINED):
pass
elif buff.startswith(self.NOTALLOWED):
self.log.warn("method not allowed")
self.nomore = True
return
elif buff.startswith(self.BADREQUEST):
self.log.error("Protocol / interopability error! The remote side most probably has problems with parsing your SIP messages!")
self.nomore = True
return
else:
self.log.warn("We got an unknown response")
self.log.error("Response: %s" % `buff`)
self.log.debug("1st line: %s" % `firstline`)
self.log.debug("Bad user: %s" % `self.BADUSER`)
self.nomore = True
def start(self):
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 .. we want to see if we get a 404
# some other error for unknown users
self.nextuser = random.getrandbits(32)
data = self.createRequest(self.method,self.nextuser)
try:
mysendto(self.sock,data,(self.dsthost,self.dstport))
#self.sock.sendto(data,(self.dsthost,self.dstport))
except socket.error,err:
self.log.error("socket error: %s" % err)
return
# first we identify the assumed reply for an unknown extension
gotbadresponse=False
try:
while 1:
try:
buff,srcaddr = self.sock.recvfrom(8192)
if self.printdebug:
print srcaddr
print buff
except socket.error,err:
self.log.error("socket error: %s" % err)
return
if buff.startswith(self.TRYING) \
or buff.startswith(self.RINGING) \
or buff.startswith(self.UNAVAILABLE):
gotbadresponse=True
elif (buff.startswith(self.PROXYAUTHREQ) \
or buff.startswith(self.INVALIDPASS) \
or buff.startswith(self.AUTHREQ)) \
and self.initialcheck:
self.log.error("SIP server replied with an authentication request for an unknown extension. Set --force to force a scan.")
return
else:
self.BADUSER = buff.splitlines()[0]
self.log.debug("Bad user = %s" % self.BADUSER)
gotbadresponse=False
break
except socket.timeout:
if gotbadresponse:
self.log.error("The response we got was not good: %s" % `buff`)
else:
self.log.error("No server response - are you sure that this PBX is listening? run svmap against it to find out")
return
except (AttributeError,ValueError,IndexError):
self.log.error("bad response .. bailing out")
return
except socket.error,err:
self.log.error("socket error: %s" % err)
return
if self.BADUSER.startswith(self.AUTHREQ):
self.log.warn("Bad user = %s - svwar will probably not work!" % self.AUTHREQ)
# let the fun commence
self.log.info('Ok SIP device found')
while 1:
if self.nomore:
while 1:
try:
self.getResponse()
except socket.timeout:
return
r, w, e = select.select(
self.rlist,
self.wlist,
self.xlist,
self.selecttime
)
if r:
# we got stuff to read off the socket
self.getResponse()
self.lastrecvtime = time.time()
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)
continue
# no stuff to read .. its our turn to send back something
try:
self.nextuser = self.usernamegen.next()
except StopIteration:
self.nomore = True
continue
except TypeError:
self.nomore = True
self.log.exception('Bad format string')
data = self.createRequest(self.method,self.nextuser)
try:
self.log.debug("sending request for %s" % self.nextuser)
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.guessmode == 1:
pickle.dump(self.nextuser,open(os.path.join(exportpath,'lastextension.pkl'),'w'))
self.log.debug('logged last extension %s' % self.nextuser)
elif self.guessmode == 2:
pickle.dump(self.guessargs.tell(),open(os.path.join(exportpath,'lastextension.pkl'),'w'))
self.log.debug('logged last position %s' % self.guessargs.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
import anydbm
import os
from sys import exit
import logging
import pickle
from libs.svhelper import resumeFrom, calcloglevel
from libs.svhelper import standardoptions, standardscanneroptions
from libs.svhelper import getRange
usage = "usage: %prog [options] target\r\n"
usage += "examples:\r\n"
usage += "%prog -e100-999 10.0.0.1\r\n"
usage += "%prog -d dictionary.txt 10.0.0.2\r\n"
parser = OptionParser(usage,version="%prog v"+str(__version__)+__GPL__)
parser = standardoptions(parser)
parser = standardscanneroptions(parser)
parser.add_option("-d", "--dictionary", dest="dictionary", type="string",
help="specify a dictionary file with possible extension names",
metavar="DICTIONARY")
parser.add_option("-m", "--method", dest="method", type="string",
help="specify a request method. The default is REGISTER. Other possible methods are OPTIONS and INVITE",
default="REGISTER",
metavar="OPTIONS")
parser.add_option("-e", "--extensions", dest="range", default='100-999',
help="specify an extension or extension range\r\nexample: -e 100-999,1000-1500,9999",
metavar="RANGE")
parser.add_option("-z", "--zeropadding", dest="zeropadding", type="int",
help="""the number of zeros used to padd the username.
the options "-e 1-9999 -z 4" would give 0001 0002 0003 ... 9999""",
default=0,
metavar="PADDING")
parser.add_option('--force', dest="force", action="store_true",
default=False,
help="Force scan, ignoring initial sanity checks.")
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('--enabledefaults', '-D', action="store_true", dest="defaults",
default=False, help="""Scan for default / typical extensions such as
1000,2000,3000 ... 1100, etc. This option is off by default.
Use --enabledefaults to enable this functionality""")
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('--domain', dest="domain",
help="force a specific domain name for the SIP message, eg. -d example.org")
parser.add_option("--debug", dest="printdebug",
help="Print SIP messages received",
default=False, action="store_true"
)
(options, args) = parser.parse_args()
exportpath = None
logging.basicConfig(level=calcloglevel(options))
logging.debug('started logging')
if options.force:
initialcheck = False
else:
initialcheck = True
if options.template is not None:
try:
options.template % 1
except TypeError:
logging.critical("The format string template is not correct. Please provide an appropiate one")
exit(1)
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)
if len(args) != 1:
parser.error("provide one hostname")
else:
host=args[0]
if options.dictionary is not None:
guessmode=2
try:
dictionary = open(options.dictionary,'r')
except IOError:
logging.error( "could not open %s" % options.dictionary )
exit(1)
if options.resume is not None:
lastextensionsrc = os.path.join(exportpath,'lastextension.pkl')
previousposition = pickle.load(open(lastextensionsrc,'r'))
dictionary.seek(previousposition)
guessargs = dictionary
else:
guessmode = 1
if options.resume is not None:
lastextensionsrc = os.path.join(exportpath,'lastextension.pkl')
try:
previousextension = pickle.load(open(lastextensionsrc,'r'))
except IOError:
logging.critical('Could not read from %s' % lastipsrc)
exit(1)
logging.debug('Previous range: %s' % options.range)
options.range = resumeFrom(previousextension,options.range)
logging.debug('New range: %s' % options.range)
logging.info('Resuming from %s' % previousextension)
extensionstotry = getRange(options.range)
guessargs = (extensionstotry,options.zeropadding,options.template,options.defaults)
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()
enableack = False
if options.method.upper() == 'INVITE':
enableack = True
sipvicious = TakeASip(
host,
port=options.port,
selecttime=options.selecttime,
method=options.method,
compact=options.enablecompact,
guessmode=guessmode,
guessargs=guessargs,
sessionpath=exportpath,
initialcheck=initialcheck,
externalip=options.externalip,
enableack=enableack,
maxlastrecvtime=options.maximumtime,
localport=options.localport,
domain=options.domain,
printdebug=options.printdebug,
)
start_time = datetime.now()
#logging.info("scan started at %s" % str(start_time))
logging.info( "start your engines" )
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.nextuser is not None:
lastextensiondst = os.path.join(exportpath,'lastextension.pkl')
logging.debug('saving state to %s' % lastextensiondst)
try:
if guessmode == 1:
pickle.dump(sipvicious.nextuser,open(os.path.join(exportpath,'lastextension.pkl'),'w'))
logging.debug('logged last extension %s' % sipvicious.nextuser)
elif guessmode == 2:
pickle.dump(sipvicious.guessargs.tell(),open(os.path.join(exportpath,'lastextension.pkl'),'w'))
logging.debug('logged last position %s' % sipvicious.guessargs.tell())
except IOError:
logging.warn('could not log the last extension scanned')
# display results
if not options.quiet:
lenres = len(sipvicious.resultauth)
if lenres > 0:
logging.info("we have %s extensions" % 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','Authentication')
rows = list()
for k in sipvicious.resultauth.keys():
rows.append((k,sipvicious.resultauth[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)