mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Switching --invalid-bignum to a pure integer constant (more generic - more statements require pure integer constant)
This commit is contained in:
parent
a639dbbeab
commit
a097ee1505
2 changed files with 2 additions and 2 deletions
|
|
@ -117,7 +117,7 @@ class Agent(object):
|
|||
_ = randomInt(2)
|
||||
value = "%s%s AND %s=%s" % (origValue, match.group() if match else "", _, _ + 1)
|
||||
elif conf.invalidBignum:
|
||||
value = "%d.%d" % (randomInt(6), randomInt(1))
|
||||
value = randomInt(6)
|
||||
else:
|
||||
if newValue.startswith("-"):
|
||||
value = ""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue