mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
minor bug fix
This commit is contained in:
@@ -315,7 +315,7 @@ def checkSqlInjection(place, parameter, value):
|
||||
# one as we are changing parameters value, which
|
||||
# will likely result in a different content
|
||||
if conf.invalidLogical:
|
||||
origValue = "%s AND %s=%s" % (origValue, randomInt(), randomInt())
|
||||
origValue = "%s AND %s=%s" % (value, randomInt(), randomInt())
|
||||
elif conf.invalidBignum:
|
||||
origValue = "%d.%d" % (randomInt(6), randomInt(1))
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user