From 56c063835a332800a300185561977edb9bccf212 Mon Sep 17 00:00:00 2001 From: stasinopoulos Date: Wed, 23 Oct 2024 07:30:52 +0300 Subject: [PATCH] Minor bug-fix --- src/core/injections/controller/checks.py | 3 ++- src/utils/settings.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/injections/controller/checks.py b/src/core/injections/controller/checks.py index 0cd485b136..b3c7ea1676 100755 --- a/src/core/injections/controller/checks.py +++ b/src/core/injections/controller/checks.py @@ -114,6 +114,7 @@ def payload_fixation(payload): return payload """ +Get response output """ def get_response(output): request = _urllib.request.Request(output) @@ -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) diff --git a/src/utils/settings.py b/src/utils/settings.py index c2f44aa63d..3ed0f120d0 100755 --- a/src/utils/settings.py +++ b/src/utils/settings.py @@ -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: