Raising number of requests for false positive testing in case of higher levels

This commit is contained in:
Miroslav Stampar 2014-02-23 19:40:01 +01:00
parent d405fc1157
commit 2a423d61ef

View File

@ -665,7 +665,7 @@ def checkFalsePositives(injection):
# Simple arithmetic operations which should show basic
# arithmetic ability of the backend if it's really injectable
for i in xrange(1 + conf.level / 2):
for i in xrange(conf.level):
randInt1, randInt2, randInt3 = (_() for j in xrange(3))
randInt1 = min(randInt1, randInt2, randInt3)