Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from thirdparty import six

# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.10.9.8"
VERSION = "1.10.9.9"
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)
Expand Down
8 changes: 8 additions & 0 deletions sqlmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,14 @@ def main():
logger.critical(errMsg)
raise SystemExit

elif "object is not callable" in excMsg and (sys._jit.is_enabled() if hasattr(sys, "_jit") else os.environ.get("PYTHON_JIT") == '1'):
errMsg = "there is a known issue when sqlmap is run with the experimental Python JIT compiler turned on, "
errMsg += "where a regular callable (e.g. built-in function) bogusly resolves to an unrelated object. "
errMsg += "Please turn it off (e.g. 'PYTHON_JIT=0') and try again "
errMsg += "(Reference: 'https://github.com/sqlmapproject/sqlmap/issues/6117')"
logger.critical(errMsg)
raise SystemExit

elif all(_ in excMsg for _ in ("Resource temporarily unavailable", "os.fork()", "dictionaryAttack")):
errMsg = "there has been a problem while running the multiprocessing hash cracking. "
errMsg += "Please rerun with option '--threads=1'"
Expand Down