From 95e0b368f2621b6cd2288dbe6c3546c9a56bf2a9 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 29 Sep 2021 17:26:38 +0200 Subject: [PATCH] Fixing a MacOS problem with --vuln --- lib/core/settings.py | 2 +- lib/core/testing.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/core/settings.py b/lib/core/settings.py index 24fe6d429..638f2c779 100644 --- a/lib/core/settings.py +++ b/lib/core/settings.py @@ -20,7 +20,7 @@ from thirdparty import six from thirdparty.six import unichr as _unichr # sqlmap version (...) -VERSION = "1.5.9.17" +VERSION = "1.5.9.18" 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) diff --git a/lib/core/testing.py b/lib/core/testing.py index 5a5375b30..111ee24c7 100644 --- a/lib/core/testing.py +++ b/lib/core/testing.py @@ -79,7 +79,7 @@ def vulnTest(): retVal = True count = 0 - address, port = "127.0.0.10", random.randint(1025, 65535) + address, port = "127.0.0.1", random.randint(1025, 65535) def _thread(): vulnserver.init(quiet=True)