Skip to content

Commit

Permalink
chore: ignore PVE-2024-73456 against poetry < 1.8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cjolowicz committed Jan 19, 2025
1 parent 6329e92 commit f62e941
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,20 @@ def safety(session: Session) -> None:
# ADVISORY: In Jinja2, the from_string function is prone to Server
# Side Template Injection (SSTI) where it takes the "source" parameter as a
# template object, renders it, and then returns it. The attacker can exploit
# it with {{INJECTION COMMANDS}} in a URI. NOTE: The maintainer and multiple
# third parties believe that this vulnerability isn't valid because users
# shouldn't use untrusted templates without sandboxing.
# it with {{INJECTION COMMANDS}} in a URI.
#
# NOTE: The maintainer and multiple third parties believe that this
# vulnerability isn't valid because users shouldn't use untrusted templates
# without sandboxing.
#
# CVE-2019-8341
"70612",
# ADVISORY: Poetry requires virtualenv version 20.26.6 or higher to protect
# against potential command injection attacks when running poetry shell in
# untrusted projects.
#
# PVE-2024-73456
"74403",
]

session.run(
Expand Down

0 comments on commit f62e941

Please sign in to comment.