mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Minor update (switching --invalid-logical to LIKE version)
This commit is contained in:
parent
86303bde55
commit
091c8ab2dd
4 changed files with 6 additions and 6 deletions
|
|
@ -433,7 +433,7 @@ def checkSqlInjection(place, parameter, value):
|
|||
|
||||
if conf.invalidLogical:
|
||||
_ = int(kb.data.randomInt[:2])
|
||||
origValue = "%s AND %s=%s" % (value, _, _ + 1)
|
||||
origValue = "%s AND %s LIKE %s" % (value, _, _ + 1)
|
||||
elif conf.invalidBignum:
|
||||
origValue = kb.data.randomInt[:6]
|
||||
elif conf.invalidString:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue