Skip to content

Commit

Permalink
Minor bug-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed Oct 23, 2024
1 parent 3504196 commit 56c0638
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/core/injections/controller/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ def payload_fixation(payload):
return payload

"""
Get response output
"""
def get_response(output):
request = _urllib.request.Request(output)
Expand Down Expand Up @@ -3160,7 +3161,7 @@ def use_bin_subdir(nc_alternative, shell):
return nc_alternative, shell
elif enable_bin_subdir in settings.CHOICE_NO:
return nc_alternative, shell
elif enable_bin_dir in settings.CHOICE_QUIT:
elif enable_bin_subdir in settings.CHOICE_QUIT:
raise SystemExit()
else:
common.invalid_option(enable_bin_subdir)
Expand Down
2 changes: 1 addition & 1 deletion src/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ def sys_argv_errors():
DESCRIPTION = "The command injection exploiter"
AUTHOR = "Anastasios Stasinopoulos"
VERSION_NUM = "4.0"
REVISION = "103"
REVISION = "104"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
Expand Down

0 comments on commit 56c0638

Please sign in to comment.