Skip to content

Commit

Permalink
Temporarily ignore safety check for pyca/cryptography
Browse files Browse the repository at this point in the history
This ignores the safety check failure for CVE-2018-10903. As the flaw is in AES-GCM (SecureDrop app server does not make use of AES-GCM), and that updating the dependency may require updating to Xenial or potentially introducing further risk, let's set safety to (temporarily) ignore this vulnerability. See issue #3677 for more information.
  • Loading branch information
emkll committed Aug 1, 2018
1 parent 7854621 commit 6ba90da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ build-debs: ## Builds and tests debian packages
safety: ## Runs `safety check` to check python dependencies for vulnerabilities
@for req_file in `find . -type f -name '*requirements.txt'`; do \
echo "Checking file $$req_file" \
&& safety check --full-report -r $$req_file \
&& safety check --ignore 36351 --full-report -r $$req_file \
&& echo -e '\n' \
|| exit 1; \
done
Expand Down

0 comments on commit 6ba90da

Please sign in to comment.