| 1 |
# cargo-audit configuration, triaged advisory posture for the MNW server. |
| 2 |
# |
| 3 |
# Every ignore below is a transitive advisory we cannot resolve by bumping our |
| 4 |
# own direct deps, each with a rationale and (where relevant) the upstream we're |
| 5 |
# waiting on. Directly-fixable advisories are NOT parked here, they get fixed in |
| 6 |
# Cargo.toml/Cargo.lock (e.g. the ammonia mXSS RUSTSEC-2026-0193 was closed by |
| 7 |
# bumping to 4.1.3, not ignored). Re-review this list on every dependency audit. |
| 8 |
|
| 9 |
[advisories] |
| 10 |
ignore = [ |
| 11 |
# rsa, Marvin timing side-channel on RSA *decryption*. Pulled only by the |
| 12 |
# signature-*verification* crates (apple-codesign, authenticode, yara-x); we |
| 13 |
# never decrypt with rsa, so the decryption-oracle attack does not apply. |
| 14 |
"RUSTSEC-2023-0071", |
| 15 |
|
| 16 |
# The rustls-webpki 0.101 trio (RUSTSEC-2026-0098/0099/0104) and the git2 UB |
| 17 |
# pair (RUSTSEC-2026-0183/0184) were dropped on 2026-07-21: the EOL rustls |
| 18 |
# 0.21 stack left s3-storage in d7a50c5a and git2 has since been bumped, so |
| 19 |
# neither advisory is reachable. cargo-deny flags unreachable ignores as |
| 20 |
# `advisory-not-detected`; that is the signal to prune this list. |
| 21 |
|
| 22 |
# Unmaintained-crate warnings, all transitive (no direct dep, no code change |
| 23 |
# available to us). Tracked for when upstreams migrate off them. |
| 24 |
"RUSTSEC-2025-0141", # bincode (unmaintained), via transitive tooling |
| 25 |
"RUSTSEC-2020-0095", # difference (unmaintained), via a dev/test dep |
| 26 |
"RUSTSEC-2024-0436", # paste (unmaintained), via proc-macro deps |
| 27 |
"RUSTSEC-2025-0134", # rustls-pemfile (unmaintained), via AWS SDK TLS |
| 28 |
"RUSTSEC-2026-0173", # proc-macro-error2 (unmaintained), via a macro dep |
| 29 |
|
| 30 |
# wasmtime 43.0.2, "Stores can mix up type indices between engines" |
| 31 |
# (3.8 low, published 2026-07-31), reached only through yara-x 1.19.0, which |
| 32 |
# is the current release and pins the 43 line. The fixed ranges are 24.0.12+, |
| 33 |
# 36.0.13+, 46.0.2+ and 47.0.3+ — they skip 43 entirely, so there is no |
| 34 |
# version reachable by bumping anything we control. Waiting on yara-x. |
| 35 |
# |
| 36 |
# Not applicable as we run it. The precondition is a store crossing between |
| 37 |
# two wasmtime Engines, and production builds exactly one: scanning/mod.rs:499 |
| 38 |
# calls yara::compile_rules_from_dir once while constructing the ScanEngine, |
| 39 |
# and every other yara_x::Compiler::new() in the tree is under #[cfg(test)]. |
| 40 |
# One engine for the process lifetime means two engines never exist to |
| 41 |
# confuse. THAT is the load-bearing claim here — if a second compile ever |
| 42 |
# lands in a production path, this ignore stops being justified and has to be |
| 43 |
# re-argued (see the note in scanning/yara.rs). |
| 44 |
# |
| 45 |
# Worth being precise about the blast radius rather than calling it isolated: |
| 46 |
# yara-x runs IN-PROCESS, in the server's address space (scanning/mod.rs:192). |
| 47 |
# What does bound it is that scanning happens on a dedicated worker pool off |
| 48 |
# the request path, a panic in a CPU layer is caught and converted to a |
| 49 |
# fail-closed scan_panic verdict rather than unwinding the worker, and the |
| 50 |
# CPU layers carry a wall-clock deadline. Defense in depth, not a sandbox. |
| 51 |
# |
| 52 |
# Monitoring: cargo-deny reports an unreachable ignore as |
| 53 |
# `advisory-not-detected`, so this entry announces its own obsolescence once |
| 54 |
# yara-x moves to a fixed wasmtime. Prune it then. |
| 55 |
"RUSTSEC-2026-0222", |
| 56 |
] |
| 57 |
|