Skip to content

Commit e5f8821

Browse files
committed
1 parent c3ee73a commit e5f8821

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/core/requests/authentication.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ def authentication_process():
6868
print(settings.print_critical_msg(err_msg))
6969
raise SystemExit()
7070

71+
except ValueError as err_msg:
72+
print(settings.print_critical_msg(err_msg))
73+
raise SystemExit()
74+
7175
"""
7276
Define the HTTP authentication
7377
wordlists for usernames / passwords.

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def sys_argv_errors():
216216
DESCRIPTION = "The command injection exploiter"
217217
AUTHOR = "Anastasios Stasinopoulos"
218218
VERSION_NUM = "3.3"
219-
REVISION = "38"
219+
REVISION = "39"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)