Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ff61417

Browse files
committed
Trivial style update
1 parent 14bf1e4 commit ff61417

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

lib/controller/checks.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -916,13 +916,12 @@ def _():
916916
if randInt3 > randInt2 > randInt1:
917917
break
918918

919-
if not checkBooleanExpression("%d%s%d" % (randInt1,INFERENCE_EQUALS_CHAR, randInt1)):
919+
if not checkBooleanExpression("%d%s%d" % (randInt1, INFERENCE_EQUALS_CHAR, randInt1)):
920920
retVal = False
921921
break
922922

923-
# Just in case if DBMS hasn't properly recovered from previous delayed request
924923
if PAYLOAD.TECHNIQUE.BOOLEAN not in injection.data:
925-
checkBooleanExpression("%d%s%d" % (randInt1, INFERENCE_EQUALS_CHAR, randInt2))
924+
checkBooleanExpression("%d%s%d" % (randInt1, INFERENCE_EQUALS_CHAR, randInt2)) # just in case if DBMS hasn't properly recovered from previous delayed request
926925

927926
if checkBooleanExpression("%d%s%d" % (randInt1, INFERENCE_EQUALS_CHAR, randInt3)): # this must not be evaluated to True
928927
retVal = False
@@ -936,7 +935,7 @@ def _():
936935
retVal = False
937936
break
938937

939-
elif checkBooleanExpression("%d %d" % (randInt3, randInt2)): # this must not be evaluated to True (invalid statement)
938+
elif checkBooleanExpression("%d %d" % (randInt3, randInt2)): # this must not be evaluated to True (invalid statement)
940939
retVal = False
941940
break
942941

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
from lib.core.enums import OS
1818

1919
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20-
VERSION = "1.3.4.34"
20+
VERSION = "1.3.4.35"
2121
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2222
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2323
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)