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

Skip to content

Commit 6679d6f

Browse files
committed
Trivial update
1 parent bb18c4d commit 6679d6f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/controller/controller.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,6 @@ def start():
301301

302302
for targetUrl, targetMethod, targetData, targetCookie, targetHeaders in kb.targets:
303303
try:
304-
305304
if conf.checkInternet:
306305
infoMsg = "checking for Internet connection"
307306
logger.info(infoMsg)

lib/core/option.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -354,8 +354,9 @@ def _setCrawler():
354354
status = "%d/%d links visited (%d%%)" % (i + 1, len(targets), round(100.0 * (i + 1) / len(targets)))
355355
dataToStdout("\r[%s] [INFO] %s" % (time.strftime("%X"), status), True)
356356
except Exception as ex:
357-
errMsg = "problem occurred while crawling at '%s' ('%s')" % (target, getSafeExString(ex))
358-
logger.error(errMsg)
357+
if not isinstance(ex, SqlmapUserQuitException):
358+
errMsg = "problem occurred while crawling at '%s' ('%s')" % (target, getSafeExString(ex))
359+
logger.error(errMsg)
359360

360361
def _doSearch():
361362
"""

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.3.11.3"
21+
VERSION = "1.3.11.4"
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)

0 commit comments

Comments
 (0)