mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Minor fixes
This commit is contained in:
parent
ecc4a98071
commit
0bd5b52d95
|
@ -1,5 +1,8 @@
|
|||
sqlmap (0.6.3-1) stable; urgency=low
|
||||
|
||||
* Minor enhancement to support stacked queries which will be used
|
||||
sometimes by takeover functionality and time based blind SQL injection
|
||||
technique;
|
||||
* Minor enhancement to be able to specify the number of seconds to wait
|
||||
between each HTTP request;
|
||||
* Minor enhancement to be able to enumerate table columns and dump table
|
||||
|
|
|
@ -96,7 +96,7 @@ def start():
|
|||
|
||||
if conf.configFile and not kb.targetUrls:
|
||||
errMsg = "you did not edit the configuration file properly, set "
|
||||
errMsg += "the target url properly"
|
||||
errMsg += "the target url"
|
||||
logger.error(errMsg)
|
||||
|
||||
hostCount = 0
|
||||
|
|
|
@ -453,6 +453,7 @@ def __setKnowledgeBaseAttributes():
|
|||
kb.parenthesis = None
|
||||
kb.resumedQueries = {}
|
||||
kb.targetUrls = set()
|
||||
kb.timeTest = None
|
||||
kb.unionComment = ""
|
||||
kb.unionCount = None
|
||||
kb.unionPosition = None
|
||||
|
|
|
@ -40,6 +40,8 @@ def timeTest():
|
|||
timeTest = inject.goStacked(query, timeTest=True)
|
||||
|
||||
if timeTest[0] == True:
|
||||
return timeTest[1]
|
||||
kb.timeTest = timeTest[1]
|
||||
else:
|
||||
return None
|
||||
kb.timeTest = False
|
||||
|
||||
return kb.timeTest
|
||||
|
|
Loading…
Reference in New Issue
Block a user