File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4158,10 +4158,11 @@ def _thread(regex):
4158
4158
if not suppressWarning :
4159
4159
debugMsg = "turning off reflection removal mechanism (for optimization purposes)"
4160
4160
logger .debug (debugMsg )
4161
- except MemoryError :
4161
+
4162
+ except (MemoryError , SystemError ):
4162
4163
kb .reflectiveMechanism = False
4163
4164
if not suppressWarning :
4164
- debugMsg = "turning off reflection removal mechanism (because of low memory issues) "
4165
+ debugMsg = "turning off reflection removal mechanism"
4165
4166
logger .debug (debugMsg )
4166
4167
4167
4168
return retVal
Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.5.12.3 "
23
+ VERSION = "1.5.12.4 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments