mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-08 09:24:01 +01:00
minor bug fix
This commit is contained in:
parent
cb15fcc8af
commit
3a11d36c66
1 changed files with 1 additions and 1 deletions
|
|
@ -315,7 +315,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
# one as we are changing parameters value, which
|
# one as we are changing parameters value, which
|
||||||
# will likely result in a different content
|
# will likely result in a different content
|
||||||
if conf.invalidLogical:
|
if conf.invalidLogical:
|
||||||
origValue = "%s AND %s=%s" % (origValue, randomInt(), randomInt())
|
origValue = "%s AND %s=%s" % (value, randomInt(), randomInt())
|
||||||
elif conf.invalidBignum:
|
elif conf.invalidBignum:
|
||||||
origValue = "%d.%d" % (randomInt(6), randomInt(1))
|
origValue = "%d.%d" % (randomInt(6), randomInt(1))
|
||||||
else:
|
else:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue