mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Revert of last commit (there is a chance that that big integer value is really valid :)
This commit is contained in:
@@ -332,7 +332,7 @@ def checkSqlInjection(place, parameter, value):
|
||||
_ = randomInt(2)
|
||||
origValue = "%s AND %s=%s" % (value, _, _ + 1)
|
||||
elif conf.invalidBignum:
|
||||
origValue = randomInt(6)
|
||||
origValue = "%d.%d" % (randomInt(6), randomInt(1))
|
||||
else:
|
||||
origValue = "-%s" % randomInt()
|
||||
templatePayload = agent.payload(place, parameter, newValue=origValue, where=where)
|
||||
|
||||
Reference in New Issue
Block a user