mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
few fixes here and there and multi-core processing for dictionary based hash attack
This commit is contained in:
parent
da049110df
commit
b8ffcf9495
8 changed files with 225 additions and 101 deletions
|
|
@ -1453,7 +1453,6 @@ def __setKnowledgeBaseAttributes(flushAll=True):
|
|||
kb.testQueryCount = 0
|
||||
kb.threadContinue = True
|
||||
kb.threadException = False
|
||||
kb.threadData = {}
|
||||
kb.uChar = "NULL"
|
||||
kb.xpCmdshellAvailable = False
|
||||
|
||||
|
|
@ -1650,6 +1649,9 @@ def __mergeOptions(inputOptions, overrideOptions):
|
|||
conf[key] = value
|
||||
|
||||
def __setTrafficOutputFP():
|
||||
infoMsg = "setting file for logging HTTP traffic"
|
||||
logger.info(infoMsg)
|
||||
|
||||
if conf.trafficFile:
|
||||
conf.trafficFP = openFile(conf.trafficFile, "w+")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue