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 c3ee73a commit e5f8821Copy full SHA for e5f8821
src/core/requests/authentication.py
@@ -68,6 +68,10 @@ def authentication_process():
68
print(settings.print_critical_msg(err_msg))
69
raise SystemExit()
70
71
+ except ValueError as err_msg:
72
+ print(settings.print_critical_msg(err_msg))
73
+ raise SystemExit()
74
+
75
"""
76
Define the HTTP authentication
77
wordlists for usernames / passwords.
src/utils/settings.py
@@ -216,7 +216,7 @@ def sys_argv_errors():
216
DESCRIPTION = "The command injection exploiter"
217
AUTHOR = "Anastasios Stasinopoulos"
218
VERSION_NUM = "3.3"
219
-REVISION = "38"
+REVISION = "39"
220
STABLE_RELEASE = False
221
if STABLE_RELEASE:
222
VERSION = "v" + VERSION_NUM + "-stable"
0 commit comments