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

Skip to content

Commit 915bc1f

Browse files
committed
Fixes #3556
1 parent e56c422 commit 915bc1f

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

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.3.66"
20+
VERSION = "1.3.3.67"
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)

lib/utils/search.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def _search(dork):
7070
conn = _urllib.request.urlopen(req)
7171

7272
requestMsg = "HTTP request:\nGET %s" % url
73-
requestMsg += " %s" % _http_client.HTTPException._http_vsn_str
73+
requestMsg += " %s" % _http_client.HTTPConnection._http_vsn_str
7474
logger.log(CUSTOM_LOGGING.TRAFFIC_OUT, requestMsg)
7575

7676
page = conn.read()
@@ -132,7 +132,7 @@ def _search(dork):
132132
conn = _urllib.request.urlopen(req)
133133

134134
requestMsg = "HTTP request:\nGET %s" % url
135-
requestMsg += " %s" % _http_client.HTTPException._http_vsn_str
135+
requestMsg += " %s" % _http_client.HTTPConnection._http_vsn_str
136136
logger.log(CUSTOM_LOGGING.TRAFFIC_OUT, requestMsg)
137137

138138
page = conn.read()

0 commit comments

Comments
 (0)