Skip to content

Commit

Permalink
Minor update regarding commit: 7990914
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed Jan 17, 2025
1 parent 516af4c commit ceca8cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/tamper/rev.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def tamper(payload):
if settings.EXPLOITATION_PHASE:
if settings.USER_APPLIED_CMD in settings.RAW_PAYLOAD:
if settings.USE_BACKTICKS:
rev_cmd = "`echo " + settings.USER_APPLIED_CMD[::-1] + "|rev`"
rev_cmd = "\\`echo " + settings.USER_APPLIED_CMD[::-1] + "|rev\\`"
else:
rev_cmd = "$(echo " + settings.USER_APPLIED_CMD[::-1] + "|rev)"
payload = settings.RAW_PAYLOAD.replace(settings.USER_APPLIED_CMD, rev_cmd).replace(settings.SINGLE_WHITESPACE, settings.WHITESPACES[0])
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.1"
REVISION = "3"
REVISION = "4"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
Expand Down

0 comments on commit ceca8cd

Please sign in to comment.