8000 Minor update · Develop-Python/commix@0060523 · GitHub
[go: up one dir, main page]

Skip to content

Commit 0060523

Browse files
committed
Minor update
1 parent 00b0a93 commit 0060523

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

src/core/injections/controller/checks.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -968,6 +968,8 @@ def is_empty(multi_parameters, http_request_method):
968968
if not settings.IS_XML:
969969
err_msg = "No parameter(s) found for testing in the provided data."
970970
print settings.print_critical_msg(err_msg)
971+
raise SystemExit()
972+
971973
provided_value = ", ".join(provided_value)
972974
if len(provided_value) > 0:
973975
if menu.options.skip_empty and len(multi_parameters) > 1:

src/core/requests/parameters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def do_GET_check(url):
5353
err_msg += "You must specify the testable parameter or "
5454
err_msg += "try to increase '--level' values to perform more tests."
5555
print settings.print_critical_msg(err_msg)
56-
return False
56+
raise SystemExit()
5757
elif menu.options.shellshock:
5858
return False
5959
return url

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def print_question_msg(question_msg):
111111
DESCRIPTION_FULL = "Automated All-in-One OS Command Injection and Exploitation Tool"
112112
DESCRIPTION = "The command injection exploiter"
113113
AUTHOR = "Anastasios Stasinopoulos"
114-
VERSION_NUM = "2.5.37"
114+
VERSION_NUM = "2.5.38"
115115
STABLE_VERSION = False
116116
if STABLE_VERSION:
117117
VERSION = "v" + VERSION_NUM[:3] + "-stable"

0 commit comments

Comments
 (0)
0