mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Minor consistency update
This commit is contained in:
parent
8c5fb1b064
commit
cd9a47835b
|
@ -1371,7 +1371,7 @@ def __cleanupOptions():
|
|||
conf.code = int(conf.code)
|
||||
|
||||
if conf.csvDel:
|
||||
conf.csvDel = conf.csvDel.decode('string_escape') # e.g. '\\t' -> '\t'
|
||||
conf.csvDel = conf.csvDel.decode("string_escape") # e.g. '\\t' -> '\t'
|
||||
|
||||
if conf.torPort and conf.torPort.isdigit():
|
||||
conf.torPort = int(conf.torPort)
|
||||
|
@ -1452,7 +1452,7 @@ def __setKnowledgeBaseAttributes(flushAll=True):
|
|||
kb.authHeader = None
|
||||
kb.bannerFp = AttribDict()
|
||||
|
||||
kb.brute = AttribDict({'tables':[], 'columns':[]})
|
||||
kb.brute = AttribDict({"tables":[], "columns":[]})
|
||||
kb.bruteMode = False
|
||||
|
||||
kb.cache = AttribDict()
|
||||
|
|
Loading…
Reference in New Issue
Block a user