mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-07 17:02:39 +01:00
Trivial commit related to the last one
This commit is contained in:
parent
55f33da85a
commit
3a3f9c5ea1
1 changed files with 2 additions and 1 deletions
|
|
@ -328,7 +328,8 @@ 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" % (value, randomInt(), randomInt())
|
||||
_ = randomInt(2)
|
||||
origValue = "%s AND %s=%s" % (value, _, _ + 1)
|
||||
elif conf.invalidBignum:
|
||||
origValue = "%d.%d" % (randomInt(6), randomInt(1))
|
||||
else:
|
||||
|
|
|
|||
Loading…
Reference in a new issue