{"id":"GHSA-2jx3-ff3v-j7jj","title":"yara-x: Unvalidated deserialization in safe `Rules::deserialize` allows memory corruption and UB","summary":"yara-x: Unvalidated deserialization in safe `Rules::deserialize` allows memory corruption and UB","severity":"medium","vendor":"yara-x","product":"yara-x","ecosystem":"rust","affected":["yara-x < 1.19.0"],"patched":["yara-x 1.19.0"],"published":"2026-09-24","updated":"2026-09-24","sourceUpdated":"2026-09-24T19:15:05.684638950Z","source":"OSV","sourceUrl":"https://osv.dev/vulnerability/GHSA-2jx3-ff3v-j7jj","references":[{"url":"https://github.com/VirusTotal/yara-x/security/advisories/GHSA-2jx3-ff3v-j7jj"},{"url":"https://github.com/VirusTotal/yara-x/commit/25efa375572efcfbe880a263ee3b0932d4b61a24"},{"url":"https://github.com/VirusTotal/yara-x"},{"url":"https://github.com/VirusTotal/yara-x/releases/tag/v1.19.0"},{"url":"https://github.com/advisories/GHSA-2jx3-ff3v-j7jj"}],"tags":["osv","rust","ghsa"],"cwe":["CWE-502"],"ingestedAt":"2026-09-24T19:50:30.723Z","slug":"GHSA-2jx3-ff3v-j7jj","body":"## Overview\n\n> [!NOTE]\n> This finding was identified during an agentic unsafe Rust code review performed by Gemini AI, followed by human review and verification.\n\n\n## The Issue\n\nThe crate exports a public safe API [`Rules::deserialize`](https://github.com/VirusTotal/yara-x/blob/5bd1f35db783679c90a3ea1a66bd15fe4e55bef1/lib/src/compiler/rules.rs#L187-L254)  accepting any generic byte sequence `B: AsRef<[u8]>`. It restores compiled rule structures directly from raw bytes using `bincode::serde::decode_from_slice`.\n\nThis decoded `Rules` struct contains internal lookup tables, including `sub_patterns: Vec<(PatternId, SubPattern)>`, `atoms: Vec<SubPatternAtom>`, and `lit_pool: BStringPool`. Subsequent safe operations assume these internal tables satisfy strict structural invariants:\n\n- `Rules::get_sub_pattern` executes `unsafe { self.sub_patterns.get_unchecked(sub_pattern_id.0 as usize) }`. If untrusted serialized bytes contain an atom referencing an out-of-bounds `SubPatternId`, calling `get_sub_pattern` during scanning triggers an out-of-bounds memory read (Undefined Behavior).\n\nhttps://github.com/VirusTotal/yara-x/blob/5bd1f35db783679c90a3ea1a66bd15fe4e55bef1/lib/src/compiler/rules.rs#L355-L360\n\n\n- `Metadata::next()` extracts string metadata via `unsafe { s.to_str_unchecked() }`. If serialized bytes corrupt `lit_pool` indices or structural data, `to_str_unchecked` constructs a `&str` pointing to invalid UTF-8 bytes (Undefined Behavior).\n\nhttps://github.com/VirusTotal/yara-x/blob/5bd1f35db783679c90a3ea1a66bd15fe4e55bef1/lib/src/models.rs#L204-L210\n\nBecause passing malformed or untrusted data to `Rules::deserialize` induces Undefined Behavior in subsequent safe calls (`Scanner::new`, `Scanner::scan`) without any `unsafe` blocks in caller code, this API is unsound.\n\n\n<details><summary>Minimal Reproduction (Miri / Native Crash)</summary>\n\nZip file with crashing_payload: \n[crashing_payload.zip](https://github.com/user-attachments/files/29173221/crashing_payload.zip)\n\nWe have a payload crashing_payload.bin where only a single byte in the structural metadata tail is mutated (changing a `SubPatternId` from `1` to `248` while keeping the WebAssembly bytecode completely untouched and valid).\n\nBelow is the self-contained verification script which compiles and runs against the official **unmodified** `yara-x v1.17.0` crate:\n\n```rust\nuse yara_x::{Rules, Scanner};\n\nfn main() {\n    // Embed the crashing payload generated by the fuzzer at compile time.\n    let serialized = include_bytes!(\"crashing_payload.bin\");\n    println!(\"Loaded embedded crashing payload, length: {}\", serialized.len());\n\n    // Deserialize. On unmodified library, this succeeds because the WASM and headers\n    // are pristine and structural corruption isn't validated.\n    if let Ok(deserialized) = Rules::deserialize(serialized) {\n        println!(\"Deserialization succeeded! Running scanner...\");\n        let mut scanner = Scanner::new(&deserialized);\n        \n        // Run the standard scan, which will execute the WASM and trigger the out-of-bounds read!\n        let _ = scanner.scan(b\"lorem ipsum dolor sit amet\");\n        println!(\"Scanner finished.\");\n    } else {\n        println!(\"Deserialization failed!\");\n    }\n}\n```\n\n### 1. Miri Trace\n\nNOTE: This needs to be run with 1.17.0. I haven't tested this against other versions.\n\n\nUnfortunately I was able to get a miri trace, but I'm not able to reproduce it right now because of lockfile changes. If you're trying this out be sure to use `MIRIFLAGS=\"-Zmiri-disable-stacked-borrows\"`\n\n\n### 2. Segfault / panics\n\nWhen run natively (without Miri or any sanitizers) on a standard Linux platform, the process immediately segfaults:\n\n```bash\n$ cargo run --bin verify\nLoaded embedded crashing payload, length: 11777\nDeserialization succeeded! Running scanner...\nSegmentation fault (core dumped)\n```\n\nAnd with a newer compiler (which appears to have debug assertions in `get_unchecked)`\n\n\n```bash\nDeserialization succeeded! Running scanner...\n\nthread 'main' (997442) panicked at lib/src/compiler/rules.rs:404:36:\nunsafe precondition(s) violated: slice::get_unchecked requires that the index is within the slice\n\nThis indicates a bug in the program. This Undefined Behavior check is optional, and cannot be relied on for safety.\nnote: run with `RUST_BACKTRACE=1` environment variable to display a backtrace\n```\n\n</details>\n\n\n<details><summary>Suggested Fix</summary>\n\nTo uphold Rust soundness guarantees, either mark `Rules::deserialize` as `pub unsafe fn deserialize` with a formal `/// # Safety` contract documenting that callers are responsible for verifying the authenticity and structural integrity of the input bytes (e.g. via cryptographic signatures), or replace all internal `get_unchecked` and `to_str_unchecked` calls on deserialized data structures with safe bounds checks (`.get()`) and UTF-8 validation (`std::str::from_utf8`).\n\n</details>\n\n---\n\n## Affected packages\n\n- `yara-x < 1.19.0`\n\n## Remediation\n\nUpgrade to a patched release:\n\n- `yara-x 1.19.0`","depth":"sunlit","depthScore":28,"depthScoreParts":{"impact":27.5,"likelihood":0,"exploitation":0,"ransomware":0},"changes":[]}