Skip to content

Commit 477ffd8

Browse files
committed
Fixes #4914
1 parent 1d8643d commit 477ffd8

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

lib/core/common.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4158,10 +4158,11 @@ def _thread(regex):
41584158
if not suppressWarning:
41594159
debugMsg = "turning off reflection removal mechanism (for optimization purposes)"
41604160
logger.debug(debugMsg)
4161-
except MemoryError:
4161+
4162+
except (MemoryError, SystemError):
41624163
kb.reflectiveMechanism = False
41634164
if not suppressWarning:
4164-
debugMsg = "turning off reflection removal mechanism (because of low memory issues)"
4165+
debugMsg = "turning off reflection removal mechanism"
41654166
logger.debug(debugMsg)
41664167

41674168
return retVal

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

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

0 commit comments

Comments
 (0)