Skip to content

Commit 515e6a8

Browse files
committed
Minor update
1 parent 8525116 commit 515e6a8

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/core/main.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,8 @@ def examine_request(request):
179179
err_msg += "."
180180
pass
181181
if menu.options.bulkfile:
182-
err_msg = "Skipping URL '" + url + "' - " + err_msg
183-
print(settings.print_critical_msg(err_msg))
182+
warn_msg = "Skipping URL '" + url + "' - " + err_msg
183+
print(settings.print_warning_msg(warn_msg))
184184
if settings.EOF:
185185
print(settings.SINGLE_WHITESPACE)
186186
return False
@@ -896,8 +896,8 @@ def main(filename, url):
896896
if settings.VERBOSITY_LEVEL < 2:
897897
print(settings.SINGLE_WHITESPACE)
898898
err_msg = str(err_msg.args[0]).split("] ")[1] + "."
899-
err_msg = "Skipping URL '" + url + "' - " + err_msg
900-
print(settings.print_critical_msg(err_msg))
899+
warn_msg = "Skipping URL '" + url + "' - " + err_msg
900+
print(settings.print_warning_msg(warn_msg))
901901
if settings.EOF:
902902
print(settings.SINGLE_WHITESPACE)
903903

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 = "61"
219+
REVISION = "62"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)