mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-16 19:40:37 +03:00
bug fix: test for boundaries with high levels if the test was extended
This commit is contained in:
parent
260643241a
commit
8281fe48e5
|
@ -299,7 +299,7 @@ def checkSqlInjection(place, parameter, value):
|
||||||
# Skip boundary if the level is higher than the provided (or
|
# Skip boundary if the level is higher than the provided (or
|
||||||
# default) value
|
# default) value
|
||||||
# Parse boundary's <level>
|
# Parse boundary's <level>
|
||||||
if boundary.level > conf.level:
|
if boundary.level > conf.level and not (kb.extendTests and intersect(payloadDbms, kb.extendTests, True)):
|
||||||
continue
|
continue
|
||||||
|
|
||||||
# Skip boundary if it does not match against test's <clause>
|
# Skip boundary if it does not match against test's <clause>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user