This commit is contained in:
Miroslav Stampar
2025-05-14 15:43:33 +02:00
parent ed9fdbd833
commit 9ed5652ae2
3 changed files with 5 additions and 5 deletions

View File

@@ -378,9 +378,9 @@ def main():
logger.critical(errMsg)
raise SystemExit
elif "AttributeError: unable to access item" in excMsg and re.search(r"3\.11\.\d+a", sys.version):
elif "AttributeError:" in excMsg and re.search(r"3\.11\.\d+a", sys.version):
errMsg = "there is a known issue when sqlmap is run with ALPHA versions of Python 3.11. "
errMsg += "Please downgrade to some stable Python version"
errMsg += "Please download a stable Python version"
logger.critical(errMsg)
raise SystemExit