Skip to content

Commit

Permalink
chore: ignore (safe for us) CVE in Jinja2 during safety check (#492)
Browse files Browse the repository at this point in the history
  • Loading branch information
lvaylet authored Jul 1, 2024
1 parent abc2a5e commit 3cf6fd3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,10 @@ bandit:
bandit -r $(NAME)

safety:
# Ignore CVE-2018-20225 with Vulnerability ID 67599.
# We do not use the `--extra-index-url` option, and the behavior is intended anyway.
safety check --ignore 67599
# Ignore:
# - CVE-2018-20225 with Vulnerability ID 67599, as we do not use the `--extra-index-url` option, and the behavior is intended anyway.
# - CVE-2019-8341 with vulnerability ID 70612, as we do not use untrusted templates without sandboxing.
safety check --ignore 67599 --ignore 70612

integration: int_cm int_csm int_custom int_dd int_dt int_es int_prom int_sp int_os

Expand Down

0 comments on commit 3cf6fd3

Please sign in to comment.