2019-05-08 13:47:52 +03:00
|
|
|
#!/usr/bin/env python
|
2012-02-16 13:46:41 +04:00
|
|
|
|
|
|
|
"""
|
2019-01-05 23:38:52 +03:00
|
|
|
Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
|
2017-10-11 15:50:46 +03:00
|
|
|
See the file 'LICENSE' for copying permission
|
2012-02-16 13:46:41 +04:00
|
|
|
"""
|
|
|
|
|
2012-07-18 16:24:10 +04:00
|
|
|
import zipfile
|
|
|
|
|
2016-01-12 12:27:04 +03:00
|
|
|
from lib.core.common import getSafeExString
|
2019-05-24 13:01:39 +03:00
|
|
|
from lib.core.common import isZipFile
|
2012-12-06 17:14:19 +04:00
|
|
|
from lib.core.exception import SqlmapDataException
|
2014-12-19 11:37:06 +03:00
|
|
|
from lib.core.exception import SqlmapInstallationException
|
2019-05-03 01:13:05 +03:00
|
|
|
from thirdparty import six
|
2012-07-18 16:24:10 +04:00
|
|
|
|
2019-05-03 01:13:05 +03:00
|
|
|
class Wordlist(six.Iterator):
|
2012-02-16 13:46:41 +04:00
|
|
|
"""
|
|
|
|
Iterator for looping over a large dictionaries
|
2019-05-06 15:41:35 +03:00
|
|
|
|
|
|
|
>>> from lib.core.option import paths
|
2019-07-03 11:56:05 +03:00
|
|
|
>>> isinstance(next(Wordlist(paths.SMALL_DICT)), six.binary_type)
|
|
|
|
True
|
|
|
|
>>> isinstance(next(Wordlist(paths.WORDLIST)), six.binary_type)
|
2019-05-06 15:41:35 +03:00
|
|
|
True
|
2012-02-16 13:46:41 +04:00
|
|
|
"""
|
|
|
|
|
2012-07-18 15:32:34 +04:00
|
|
|
def __init__(self, filenames, proc_id=None, proc_count=None, custom=None):
|
2019-05-06 15:41:35 +03:00
|
|
|
self.filenames = [filenames] if isinstance(filenames, six.string_types) else filenames
|
2012-02-16 13:46:41 +04:00
|
|
|
self.fp = None
|
|
|
|
self.index = 0
|
2012-07-18 15:32:34 +04:00
|
|
|
self.counter = -1
|
2014-12-19 11:37:06 +03:00
|
|
|
self.current = None
|
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):
|
2019-09-13 12:38:26 +03:00
|
|
|
return # Note: https://stackoverflow.com/a/30217723 (PEP 479)
|
2012-02-16 13:46:41 +04:00
|
|
|
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:
|
2014-12-19 11:37:06 +03:00
|
|
|
self.current = self.filenames[self.index]
|
2019-05-24 13:01:39 +03:00
|
|
|
if isZipFile(self.current):
|
2015-08-30 23:52:24 +03:00
|
|
|
try:
|
|
|
|
_ = zipfile.ZipFile(self.current, 'r')
|
2019-01-22 02:40:48 +03:00
|
|
|
except zipfile.error as ex:
|
2016-05-22 22:44:17 +03:00
|
|
|
errMsg = "something appears to be wrong with "
|
2016-01-12 12:27:04 +03:00
|
|
|
errMsg += "the file '%s' ('%s'). Please make " % (self.current, getSafeExString(ex))
|
2015-08-30 23:52:24 +03:00
|
|
|
errMsg += "sure that you haven't made any changes to it"
|
2018-03-13 13:13:38 +03:00
|
|
|
raise SqlmapInstallationException(errMsg)
|
2012-07-18 16:24:10 +04:00
|
|
|
if len(_.namelist()) == 0:
|
2014-12-19 11:37:06 +03:00
|
|
|
errMsg = "no file(s) inside '%s'" % self.current
|
2013-01-04 02:20:55 +04:00
|
|
|
raise SqlmapDataException(errMsg)
|
2012-07-18 16:24:10 +04:00
|
|
|
self.fp = _.open(_.namelist()[0])
|
|
|
|
else:
|
2019-07-03 11:56:05 +03:00
|
|
|
self.fp = open(self.current, "rb")
|
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
|
|
|
|
|
2019-05-03 01:13:05 +03:00
|
|
|
def __next__(self):
|
2012-02-16 13:46:41 +04:00
|
|
|
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:
|
2019-01-22 04:47:06 +03:00
|
|
|
retVal = next(self.iter).rstrip()
|
2019-01-22 02:40:48 +03:00
|
|
|
except zipfile.error as ex:
|
2016-05-22 22:44:17 +03:00
|
|
|
errMsg = "something appears to be wrong with "
|
2016-01-12 12:27:04 +03:00
|
|
|
errMsg += "the file '%s' ('%s'). Please make " % (self.current, getSafeExString(ex))
|
2014-12-19 11:37:06 +03:00
|
|
|
errMsg += "sure that you haven't made any changes to it"
|
2018-03-13 13:13:38 +03:00
|
|
|
raise SqlmapInstallationException(errMsg)
|
2012-07-18 15:32:34 +04:00
|
|
|
except StopIteration:
|
|
|
|
self.adjust()
|
2019-01-22 04:47:06 +03:00
|
|
|
retVal = next(self.iter).rstrip()
|
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()
|