chore: ignore rsa Marvin timing advisory (RUSTSEC-2023-0071)#22
Merged
Boshen merged 1 commit intoJun 23, 2026
Merged
Conversation
The `rsa` crate, pulled transitively (e.g. via `pgp`/rPGP for OpenPGP signature verification), carries RUSTSEC-2023-0071, the Marvin Attack timing sidechannel. It affects RSA private-key operations (signing/decryption) observable over a network, has no fixed release available upstream, and consumers that only verify signatures perform public-key operations that are unaffected. Ignore it so cargo-deny does not fail builds that only depend on rsa for verification.
Contributor
Author
|
Used in vite-plus voidzero-dev/vite-plus#1848 |
fengmk2
added a commit
to voidzero-dev/vite-plus
that referenced
this pull request
Jun 16, 2026
…ry fix TEMP verification only: point at fengmk2/security-action@a2a9a4b (head of oxc-project/security-action#22, which ignores RUSTSEC-2023-0071). Revert to the upstream oxc-project pin once #22 is merged and released.
fengmk2
added a commit
to voidzero-dev/vite-plus
that referenced
this pull request
Jun 16, 2026
Reverts the temporary fork pin used to verify oxc-project/security-action#22. Re-pin to a released oxc-project version that includes the RUSTSEC-2023-0071 ignore once #22 is merged and tagged.
fengmk2
added a commit
to voidzero-dev/vite-plus
that referenced
this pull request
Jun 23, 2026
## Summary - update `oxc-project/security-action` from v1.0.7 to v1.0.8 - include the RUSTSEC-2023-0071 ignore added by oxc-project/security-action#22 ## Validation - `git diff --check -- .github/workflows/security.yml`
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
cargo-deny fails on any project that pulls the
rsacrate, e.g. viapgp(rPGP) for OpenPGP signature verification, because of RUSTSEC-2023-0071 (the Marvin Attack timing sidechannel).Why it's safe to ignore here
rsaonly to verify signatures, which are public-key operations and are not affected by the private-key timing sidechannel.So it is a notice that cannot be remediated by upgrading and does not apply to our usage. Add it to the ignore list alongside the existing advisories.