File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11sqlmap (0.6.3-1) stable; urgency=low
22
3+ * Minor enhancement to support stacked queries which will be used
4+ sometimes by takeover functionality and time based blind SQL injection
5+ technique;
36 * Minor enhancement to be able to specify the number of seconds to wait
47 between each HTTP request;
58 * Minor enhancement to be able to enumerate table columns and dump table
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ def start():
9696
9797 if conf .configFile and not kb .targetUrls :
9898 errMsg = "you did not edit the configuration file properly, set "
99- errMsg += "the target url properly "
99+ errMsg += "the target url"
100100 logger .error (errMsg )
101101
102102 hostCount = 0
Original file line number Diff line number Diff line change @@ -453,6 +453,7 @@ def __setKnowledgeBaseAttributes():
453453 kb .parenthesis = None
454454 kb .resumedQueries = {}
455455 kb .targetUrls = set ()
456+ kb .timeTest = None
456457 kb .unionComment = ""
457458 kb .unionCount = None
458459 kb .unionPosition = None
Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ def timeTest():
4040 timeTest = inject .goStacked (query , timeTest = True )
4141
4242 if timeTest [0 ] == True :
43- return timeTest [1 ]
43+ kb . timeTest = timeTest [1 ]
4444 else :
45- return None
45+ kb .timeTest = False
46+
47+ return kb .timeTest
You can’t perform that action at this time.
0 commit comments