Skip to content

Commit 83a8a59

Browse files
committed
Minor improvement regarding injecting inside boundaries.
1 parent 07dd9fe commit 83a8a59

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/injections/controller/checks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def value_boundaries(value):
105105
else:
106106
procced_option = ""
107107
if procced_option in settings.CHOICE_YES or len(procced_option) == 0:
108-
value = value.replace(re.search(settings.VALUE_BOUNDARIES, value).group(0), "")
108+
value = re.search(settings.VALUE_BOUNDARIES, value).group(1)
109109
elif procced_option in settings.CHOICE_NO:
110110
pass
111111
elif procced_option in settings.CHOICE_QUIT:

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def sys_argv_errors():
216216
DESCRIPTION = "The command injection exploiter"
217217
AUTHOR = "Anastasios Stasinopoulos"
218218
VERSION_NUM = "3.3"
219-
REVISION = "41"
219+
REVISION = "42"
220220
STABLE_RELEASE = False
221221
if STABLE_RELEASE:
222222
VERSION = "v" + VERSION_NUM + "-stable"

0 commit comments

Comments
 (0)