Skip to content

Commit

Permalink
Fixes #5521
Browse files Browse the repository at this point in the history
  • Loading branch information
stamparm committed Sep 7, 2023
1 parent 6caba63 commit c629374
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from thirdparty.six import unichr as _unichr

# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.7.9.1"
VERSION = "1.7.9.2"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
Expand Down
2 changes: 1 addition & 1 deletion lib/request/inject.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def _goInferenceProxy(expression, fromUser=False, batch=False, unpack=True, char

stopLimit = 1

elif (not count or int(count) == 0):
elif not isNumPosStrValue(count):
if not count:
warnMsg = "the SQL query provided does not "
warnMsg += "return any output"
Expand Down
2 changes: 1 addition & 1 deletion lib/techniques/error/use.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ def errorUse(expression, dump=False):

stopLimit = 1

elif (not count or int(count) == 0):
elif not isNumPosStrValue(count):
if not count:
warnMsg = "the SQL query provided does not "
warnMsg += "return any output"
Expand Down
2 changes: 1 addition & 1 deletion lib/techniques/union/use.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def unionUse(expression, unpack=True, dump=False):

stopLimit = 1

elif (not count or int(count) == 0):
elif not isNumPosStrValue(count):
if not count:
warnMsg = "the SQL query provided does not "
warnMsg += "return any output"
Expand Down

0 comments on commit c629374

Please sign in to comment.