sqlmap/lib/core/wordlist.py

73 lines
1.9 KiB
Python
Raw Normal View History

2012-02-16 13:46:41 +04:00
#!/usr/bin/env python
"""
2012-07-12 21:38:03 +04:00
Copyright (c) 2006-2012 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-02-16 13:46:41 +04:00
class Wordlist:
"""
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
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-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()