From daf9ec875ae7f70909803f94761150b3e3a3fbed Mon Sep 17 00:00:00 2001 From: stasinopoulos Date: Thu, 9 May 2024 09:11:32 +0300 Subject: [PATCH] Minor update --- src/core/injections/controller/checks.py | 10 ++++------ src/utils/settings.py | 2 +- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/core/injections/controller/checks.py b/src/core/injections/controller/checks.py index d67cf272ea..ad9753d939 100755 --- a/src/core/injections/controller/checks.py +++ b/src/core/injections/controller/checks.py @@ -2145,14 +2145,12 @@ def print_users(sys_users, filename, _, separator, TAG, cmd, prefix, suffix, whi if not menu.options.no_logging: output_file.write(" " + sys_users) else: - # print(settings.SINGLE_WHITESPACE) - warn_msg = "It seems that you don't have permissions to read the '" - warn_msg += settings.PASSWD_FILE + "'." + warn_msg = "It seems that you don't have permissions " + warn_msg += "to read the content of the file '" + settings.PASSWD_FILE + "'." print(settings.print_warning_msg(warn_msg)) except TypeError: pass except IndexError: - # print(settings.SINGLE_WHITESPACE) warn_msg = "Some kind of WAF/IPS probably blocks the attempt to read '" warn_msg += settings.PASSWD_FILE + "' to enumerate operating system users." print(settings.print_warning_msg(warn_msg)) @@ -2201,8 +2199,8 @@ def print_passes(sys_passes, filename, _, alter_shell): if not menu.options.no_logging: output_file.write(" " + fields[0]) else: - warn_msg = "It seems that you don't have permissions to read the '" - warn_msg += settings.SHADOW_FILE + "' file." + warn_msg = "It seems that you don't have permissions " + warn_msg += "to read the content of the file '" + settings.SHADOW_FILE + "'." print(settings.print_warning_msg(warn_msg)) """ diff --git a/src/utils/settings.py b/src/utils/settings.py index bf368891ed..a2ef434357 100755 --- a/src/utils/settings.py +++ b/src/utils/settings.py @@ -247,7 +247,7 @@ def sys_argv_errors(): DESCRIPTION = "The command injection exploiter" AUTHOR = "Anastasios Stasinopoulos" VERSION_NUM = "4.0" -REVISION = "43" +REVISION = "44" STABLE_RELEASE = False VERSION = "v" if STABLE_RELEASE: