Skip to content

Commit

Permalink
Potential fix for #984
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed Nov 22, 2024
1 parent 92cf5d0 commit 885bc88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/core/requests/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,9 @@ def vuln_GET_param(url):
else:
vuln_parameter = url

if 'vuln_parameter' not in locals():
return url

if settings.USER_DEFINED_POST_DATA and vuln_parameter:
settings.IGNORE_USER_DEFINED_POST_DATA = True

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.0"
REVISION = "115"
REVISION = "116"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
Expand Down

0 comments on commit 885bc88

Please sign in to comment.