mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fix for Issue #177
This commit is contained in:
parent
323cf2b7f2
commit
1dfe558d3d
4 changed files with 21 additions and 2 deletions
|
|
@ -939,3 +939,9 @@ def posixToNtSlashes(filepath):
|
|||
|
||||
def ntToPosixSlashes(filepath):
|
||||
return filepath.replace('\\', '/')
|
||||
|
||||
def push(value):
|
||||
conf.stack.append(value)
|
||||
|
||||
def pop():
|
||||
return conf.stack.pop()
|
||||
|
|
@ -957,12 +957,14 @@ def __setConfAttributes():
|
|||
conf.path = None
|
||||
conf.port = None
|
||||
conf.progressWidth = 54
|
||||
conf.raise404 = True
|
||||
conf.retriesCount = 0
|
||||
conf.scheme = None
|
||||
#conf.seqMatcher = difflib.SequenceMatcher(lambda x: x in " \t")
|
||||
conf.seqMatcher = difflib.SequenceMatcher(None)
|
||||
conf.seqLock = None
|
||||
conf.sessionFP = None
|
||||
conf.stack = []
|
||||
conf.start = True
|
||||
conf.threadContinue = True
|
||||
conf.threadException = False
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue