mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-29 13:03:50 +03:00
Fixes #1190
This commit is contained in:
parent
9bd41ed99d
commit
adc8ac267d
|
@ -719,16 +719,14 @@ def checkFalsePositives(injection):
|
||||||
kb.injection = injection
|
kb.injection = injection
|
||||||
|
|
||||||
for i in xrange(conf.level):
|
for i in xrange(conf.level):
|
||||||
|
while True:
|
||||||
randInt1, randInt2, randInt3 = (_() for j in xrange(3))
|
randInt1, randInt2, randInt3 = (_() for j in xrange(3))
|
||||||
|
|
||||||
randInt1 = min(randInt1, randInt2, randInt3)
|
randInt1 = min(randInt1, randInt2, randInt3)
|
||||||
randInt3 = max(randInt1, randInt2, randInt3)
|
randInt3 = max(randInt1, randInt2, randInt3)
|
||||||
|
|
||||||
while randInt1 >= randInt2:
|
if randInt3 > randInt2 > randInt1:
|
||||||
randInt2 = _()
|
break
|
||||||
|
|
||||||
while randInt2 >= randInt3:
|
|
||||||
randInt3 = _()
|
|
||||||
|
|
||||||
if not checkBooleanExpression("%d=%d" % (randInt1, randInt1)):
|
if not checkBooleanExpression("%d=%d" % (randInt1, randInt1)):
|
||||||
retVal = None
|
retVal = None
|
||||||
|
|
Loading…
Reference in New Issue
Block a user