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

Skip to content

Commit 6f54be9

Browse files
committed
Minor modification
1 parent 35fa710 commit 6f54be9

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

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

lib/techniques/error/use.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -340,9 +340,9 @@ def errorUse(expression, dump=False):
340340
else:
341341
stopLimit = int(count)
342342

343-
infoMsg = "used SQL query returns "
344-
infoMsg += "%d %s" % (stopLimit, "entries" if stopLimit > 1 else "entry")
345-
logger.info(infoMsg)
343+
debugMsg = "used SQL query returns "
344+
debugMsg += "%d %s" % (stopLimit, "entries" if stopLimit > 1 else "entry")
345+
logger.debug(debugMsg)
346346

347347
elif count and not count.isdigit():
348348
warnMsg = "it was not possible to count the number "

lib/techniques/union/use.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,9 +261,9 @@ def unionUse(expression, unpack=True, dump=False):
261261
else:
262262
stopLimit = int(count)
263263

264-
infoMsg = "used SQL query returns "
265-
infoMsg += "%d %s" % (stopLimit, "entries" if stopLimit > 1 else "entry")
266-
logger.info(infoMsg)
264+
debugMsg = "used SQL query returns "
265+
debugMsg += "%d %s" % (stopLimit, "entries" if stopLimit > 1 else "entry")
266+
logger.debug(debugMsg)
267267

268268
elif count and (not isinstance(count, six.string_types) or not count.isdigit()):
269269
warnMsg = "it was not possible to count the number "

0 commit comments

Comments
 (0)