diff --git a/extra/vulnserver/vulnserver.py b/extra/vulnserver/vulnserver.py index 22fc1df1c..3e2345076 100644 --- a/extra/vulnserver/vulnserver.py +++ b/extra/vulnserver/vulnserver.py @@ -172,7 +172,7 @@ class ReqHandler(BaseHTTPRequestHandler): self.end_headers() else: self.end_headers() - self.wfile.write(quote(output if isinstance(output, bytes) else output.encode(UNICODE_ENCODING))) + self.wfile.write(output if isinstance(output, bytes) else output.encode(UNICODE_ENCODING)) else: self.send_response(NOT_FOUND) self.send_header("Connection", "close") diff --git a/lib/core/settings.py b/lib/core/settings.py index 218b8ab73..9fa6825f4 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -18,7 +18,7 @@ from lib.core.enums import OS from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.3.11.116" +VERSION = "1.3.11.117" 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)