mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Added support for time-based blind SQL injection via stacked queries too. Need to add vectors for some DBMS yet.
This commit is contained in:
parent
10ef2b5de8
commit
f5ce739bdf
3 changed files with 88 additions and 36 deletions
|
|
@ -45,7 +45,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
|||
partialValue = ""
|
||||
finalValue = ""
|
||||
asciiTbl = getCharset(charsetType)
|
||||
timeBasedCompare = (kb.technique == PAYLOAD.TECHNIQUE.TIME)
|
||||
timeBasedCompare = (kb.technique in (PAYLOAD.TECHNIQUE.TIME, PAYLOAD.TECHNIQUE.STACKED))
|
||||
|
||||
# Set kb.partRun in case "common prediction" feature (a.k.a. "good
|
||||
# samaritan") is used
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue