Skip to content

Commit

Permalink
Potential fix for #983
Browse files Browse the repository at this point in the history
  • Loading branch information
stasinopoulos committed Nov 25, 2024
1 parent 885bc88 commit 32ace9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/injections/controller/checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ def not_declared_cookies(response):
else:
common.invalid_option(set_cookies)
pass
except (KeyError, TypeError):
except (AttributeError, KeyError, TypeError):
pass

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

0 comments on commit 32ace9d

Please sign in to comment.