Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3a6b71 commit 568ee46Copy full SHA for 568ee46
1 file changed
sqlmap.py
@@ -385,6 +385,12 @@ def main():
385
logger.critical(errMsg)
386
raise SystemExit
387
388
+ elif all(_ in excMsg for _ in ("window = tkinter.Tk()",)):
389
+ errMsg = "there has been a problem in initialization of GUI interface "
390
+ errMsg += "('%s')" % excMsg.strip().split('\n')[-1]
391
+ logger.critical(errMsg)
392
+ raise SystemExit
393
+
394
elif "bad marshal data (unknown type code)" in excMsg:
395
match = re.search(r"\s*(.+)\s+ValueError", excMsg)
396
errMsg = "one of your .pyc files are corrupted%s" % (" ('%s')" % match.group(1) if match else "")
0 commit comments