mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fixes #181 - proper save/resume information about single entry UNION SQL injection
This commit is contained in:
@@ -55,11 +55,11 @@ class Agent:
|
||||
retValue = ""
|
||||
newValue = urlencode(newValue)
|
||||
|
||||
if negative or conf.paramNegative:
|
||||
if negative or kb.unionNegative:
|
||||
negValue = "-"
|
||||
elif falseCond or conf.paramFalseCond:
|
||||
elif falseCond or kb.unionFalseCond:
|
||||
randInt = randomInt()
|
||||
falseValue = " AND %d=%d" % (randInt, randInt + 1)
|
||||
falseValue = urlencode(" AND %d=%d" % (randInt, randInt + 1))
|
||||
|
||||
# After identifing the injectable parameter
|
||||
if kb.injPlace == "User-Agent":
|
||||
|
||||
Reference in New Issue
Block a user