From b5e489f0f0190457d1e48ea9be9a5fcb0fb0fce8 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 27 May 2019 13:03:25 +0200 Subject: [PATCH] Fixes #3720 --- lib/controller/checks.py | 2 +- lib/core/settings.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/controller/checks.py b/lib/controller/checks.py index 847cdf514..d415367c1 100644 --- a/lib/controller/checks.py +++ b/lib/controller/checks.py @@ -512,7 +512,7 @@ def checkSqlInjection(place, parameter, value): if ratio == 1.0: continue - except MemoryError: + except (MemoryError, OverflowError): pass kb.prevFalsePage = falsePage diff --git a/lib/core/settings.py b/lib/core/settings.py index 99967ffea..5d109e339 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.5.142" +VERSION = "1.3.5.143" 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)