Skip to content

Commit 6043559

Browse files
fix: Re-add RUSTSEC-2023-0071 exclusion (#514)
* fix: Re-add RUSTSEC-2023-0071 exclusion Part of stackabletech/issues#677 Fixup of #513 operator-rs is using the rsa crate, there is no fix yet * typo * Update template/deny.toml Co-authored-by: Nick <10092581+NickLarsenNZ@users.noreply.github.com> --------- Co-authored-by: Nick <10092581+NickLarsenNZ@users.noreply.github.com>
1 parent 6c50857 commit 6043559

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

template/deny.toml

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# This file is the source of truth for all our repos!
2+
# This includes repos not templated by operator-templating, please copy/paste the file for this repos.
3+
4+
# TIP: Use "cargo deny check" to check if everything is fine
5+
16
[graph]
27
targets = [
38
{ triple = "x86_64-unknown-linux-gnu" },
@@ -9,6 +14,17 @@ targets = [
914

1015
[advisories]
1116
yanked = "deny"
17+
ignore = [
18+
# https://rustsec.org/advisories/RUSTSEC-2023-0071
19+
# "rsa" crate: Marvin Attack: potential key recovery through timing sidechannel
20+
#
21+
# No patch is yet available, however work is underway to migrate to a fully constant-time implementation
22+
# So we need to accept this, as of SDP 25.3 we are not using the rsa crate to create certificates used in production
23+
# setups.
24+
#
25+
# https://github.com/RustCrypto/RSA/issues/19 is the tracking issue
26+
"RUSTSEC-2023-0071",
27+
]
1228

1329
[bans]
1430
multiple-versions = "allow"

0 commit comments

Comments
 (0)