Skip to content

Commit 2222e98

Browse files
committed
Fixed undefined reference
1 parent 7f3525c commit 2222e98

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/injections/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def perform_checks(url, http_request_method, filename):
742742
# and more than one whitespace character is defined. Keep only one.
743743
if (settings.MULTI_TARGETS or settings.STDIN_PARSING) and \
744744
len(settings.WHITESPACES) > 1:
745-
settings.WHITESPACES = [_urllib.parse.quote(SINGLE_WHITESPACE)]
745+
settings.WHITESPACES = [_urllib.parse.quote(settings.SINGLE_WHITESPACE)]
746746

747747
timesec = settings.TIMESEC
748748

src/utils/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def sys_argv_errors():
262262
DESCRIPTION = "The command injection exploiter"
263263
AUTHOR = "Anastasios Stasinopoulos"
264264
VERSION_NUM = "4.2"
265-
REVISION = "34"
265+
REVISION = "35"
266266
STABLE_RELEASE = False
267267
VERSION = "v"
268268
if STABLE_RELEASE:

0 commit comments

Comments
 (0)