mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-30 11:29:02 +00:00
removed some blank trailing spaces (with extra/shutils/blanks.sh)
This commit is contained in:
@@ -1558,7 +1558,7 @@ def pushValue(value):
|
||||
"""
|
||||
Push value to the stack (thread dependent)
|
||||
"""
|
||||
|
||||
|
||||
getCurrentThreadData().valueStack.append(value)
|
||||
|
||||
def popValue():
|
||||
@@ -1761,7 +1761,7 @@ def removeDynamicContent(page):
|
||||
|
||||
def filterStringValue(value, regex):
|
||||
retVal = ""
|
||||
|
||||
|
||||
if value:
|
||||
for char in value:
|
||||
if re.search(regex, char):
|
||||
|
||||
@@ -172,7 +172,7 @@ class Dump:
|
||||
self.__write("+%s+\n" % lines)
|
||||
else:
|
||||
self.string("tables", dbTables)
|
||||
|
||||
|
||||
def dbTableColumns(self, tableColumns):
|
||||
for db, tables in tableColumns.items():
|
||||
if not db:
|
||||
|
||||
@@ -265,7 +265,7 @@ class Connect:
|
||||
|
||||
except (urllib2.URLError, socket.error, socket.timeout, httplib.BadStatusLine, httplib.IncompleteRead), e:
|
||||
tbMsg = traceback.format_exc()
|
||||
|
||||
|
||||
if "no host given" in tbMsg:
|
||||
warnMsg = "invalid url address used (%s)" % repr(url)
|
||||
raise sqlmapSyntaxException, warnMsg
|
||||
|
||||
@@ -37,7 +37,7 @@ def tableExists(tableFile):
|
||||
iolock = threading.Lock()
|
||||
kb.locks.seqLock = threading.Lock()
|
||||
kb.threadContinue = True
|
||||
|
||||
|
||||
def tableExistsThread():
|
||||
while count[0] < length and kb.threadContinue:
|
||||
tbllock.acquire()
|
||||
|
||||
Reference in New Issue
Block a user