Skip to content

Commit 22dfcfa

Browse files
committed
docs: add documentation explaining why RUSTSEC-2023-0071 is ignored
1 parent ef8efa6 commit 22dfcfa

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/checks.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,26 @@ jobs:
2424
uses: Swatinem/rust-cache@v2
2525
- name: Install cargo audit
2626
run: cargo install cargo-audit
27+
28+
# Ignoring RUSTSEC-2023-0071 as it only occurs in a dependency used in an example
29+
# and is not exploitable in the context of this project.
30+
#
31+
# Crate: rsa
32+
# Version: 0.9.6
33+
# Title: Marvin Attack: potential key recovery through timing sidechannels
34+
# Date: 2023-11-22
35+
# ID: RUSTSEC-2023-0071
36+
# URL: https://rustsec.org/advisories/RUSTSEC-2023-0071
37+
# Severity: 5.9 (medium)
38+
# Solution: No fixed upgrade is available!
39+
# Dependency tree:
40+
# rsa 0.9.6
41+
# └── sqlx-mysql 0.7.3
42+
# ├── sqlx-macros-core 0.7.3
43+
# │ └── sqlx-macros 0.7.3
44+
# │ └── sqlx 0.7.3
45+
# │ └── sqlx_embedded 0.4.1
46+
# └── sqlx 0.7.3
2747
- name: Audit dependencies
2848
run: cargo audit --ignore RUSTSEC-2023-0071
2949

0 commit comments

Comments
 (0)