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

Skip to content

Commit d9bf33e

Browse files
committed
Minor beauty patch
1 parent 0d1ea50 commit d9bf33e

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

lib/core/settings.py

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

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

lib/utils/crawler.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ def crawlThread():
6464
if current:
6565
content = Request.getPage(url=current, crawling=True, raise404=False)[0]
6666
except SqlmapConnectionException, ex:
67-
errMsg = "connection exception detected (%s). skipping " % getSafeExString(ex)
67+
errMsg = "connection exception detected ('%s'). skipping " % getSafeExString(ex)
6868
errMsg += "URL '%s'" % current
6969
logger.critical(errMsg)
7070
except SqlmapSyntaxException:
7171
errMsg = "invalid URL detected. skipping '%s'" % current
7272
logger.critical(errMsg)
7373
except httplib.InvalidURL, ex:
74-
errMsg = "invalid URL detected (%s). skipping " % getSafeExString(ex)
74+
errMsg = "invalid URL detected ('%s'). skipping " % getSafeExString(ex)
7575
errMsg += "URL '%s'" % current
7676
logger.critical(errMsg)
7777

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ec6a778b0e74749b916caead78ba88b7 lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
d5835ec26ff3cde1f1bafedc593dbde6 lib/core/settings.py
49+
8891f0465540e47f2f56adfa5f516e17 lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
7c9f2af3c0a8dd89223cfe07b0a0b826 lib/core/target.py
@@ -100,7 +100,7 @@ fcc3a6ac3b5f7aad86686e5f9adc7a43 lib/techniques/union/test.py
100100
505682f95cb23573dd60bf6d0063a632 lib/techniques/union/use.py
101101
452cb280aa51a4ddf38d94534a6e8d5f lib/utils/api.py
102102
d9d62fa5d7367e7fb23180240c8d03f4 lib/utils/brute.py
103-
95e4eab120640fd9330d569a29a25be4 lib/utils/crawler.py
103+
7e0078da1dff59530d64f9b1e2f68607 lib/utils/crawler.py
104104
a2d2087353fb64a8441c3247ae0ad719 lib/utils/deps.py
105105
b806de9710a02436e576ac9065816021 lib/utils/getch.py
106106
fe3a38f820ae05a95f92ab53e22b46d0 lib/utils/har.py

0 commit comments

Comments
 (0)