sqlmap/lib/core/wordlist.py

78 lines
2.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2012-02-16 13:46:41 +04:00
"""
2014-01-13 21:24:49 +04:00
Copyright (c) 2006-2014 sqlmap developers (http://sqlmap.org/)
2012-02-16 13:46:41 +04:00
See the file 'doc/COPYING' for copying permission
"""
2012-07-18 16:24:10 +04:00
import os
import zipfile
from lib.core.exception import SqlmapDataException
2012-10-25 02:03:00 +04:00
from lib.core.settings import UNICODE_ENCODING
2012-07-18 16:24:10 +04:00
class Wordlist(object):
2012-02-16 13:46:41 +04:00
"""
Iterator for looping over a large dictionaries
"""
2012-07-18 15:32:34 +04:00
def __init__(self, filenames, proc_id=None, proc_count=None, custom=None):
2012-02-16 13:46:41 +04:00
self.filenames = filenames
self.fp = None
self.index = 0
2012-07-18 15:32:34 +04:00
self.counter = -1
2012-02-16 13:46:41 +04:00
self.iter = None
2012-07-18 15:32:34 +04:00
self.custom = custom or []
self.proc_id = proc_id
self.proc_count = proc_count
2012-02-16 13:46:41 +04:00
self.adjust()
def __iter__(self):
return self
def adjust(self):
self.closeFP()
if self.index > len(self.filenames):
raise StopIteration
elif self.index == len(self.filenames):
2012-07-18 16:09:04 +04:00
self.iter = iter(self.custom)
2012-02-16 13:46:41 +04:00
else:
current = self.filenames[self.index]
2012-07-18 16:24:10 +04:00
if os.path.splitext(current)[1].lower() == ".zip":
_ = zipfile.ZipFile(current, 'r')
if len(_.namelist()) == 0:
errMsg = "no file(s) inside '%s'" % current
raise SqlmapDataException(errMsg)
2012-07-18 16:24:10 +04:00
self.fp = _.open(_.namelist()[0])
else:
self.fp = open(current, 'r')
2012-02-16 13:46:41 +04:00
self.iter = iter(self.fp)
self.index += 1
def closeFP(self):
if self.fp:
self.fp.close()
self.fp = None
def next(self):
retVal = None
2012-07-18 15:32:34 +04:00
while True:
2012-07-18 16:09:04 +04:00
self.counter += 1
2012-07-18 15:32:34 +04:00
try:
retVal = self.iter.next().rstrip()
except StopIteration:
self.adjust()
retVal = self.iter.next().rstrip()
2012-10-25 02:03:00 +04:00
try:
retVal = retVal.decode(UNICODE_ENCODING)
except UnicodeDecodeError:
continue
2012-07-18 16:09:04 +04:00
if not self.proc_count or self.counter % self.proc_count == self.proc_id:
2012-07-18 15:32:34 +04:00
break
2012-02-16 13:46:41 +04:00
return retVal
def rewind(self):
self.index = 0
self.adjust()