Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed May 8, 2024
1 parent b9f7408 commit ebeb131
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/core/injections/controller/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ def process_non_custom():
settings.SKIP_NON_CUSTOM = settings.IGNORE_USER_DEFINED_POST_DATA = False
return
elif process in settings.CHOICE_NO:
settings.SKIP_NON_CUSTOM = settings.IGNORE_USER_DEFINED_POST_DATA = True
settings.SKIP_NON_CUSTOM = True
settings.IGNORE_USER_DEFINED_POST_DATA = False
return
elif process in settings.CHOICE_QUIT:
raise SystemExit()
Expand Down
2 changes: 1 addition & 1 deletion src/utils/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ def sys_argv_errors():
DESCRIPTION = "The command injection exploiter"
AUTHOR = "Anastasios Stasinopoulos"
VERSION_NUM = "4.0"
REVISION = "42"
REVISION = "43"
STABLE_RELEASE = False
VERSION = "v"
if STABLE_RELEASE:
Expand Down

0 comments on commit ebeb131

Please sign in to comment.