GHSA-vfvv-c25p-m7mm

Suggest an improvement
Source
https://github.com/advisories/GHSA-vfvv-c25p-m7mm
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-vfvv-c25p-m7mm/GHSA-vfvv-c25p-m7mm.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-vfvv-c25p-m7mm
Aliases
Downstream
Published
2026-05-15T18:09:10Z
Modified
2026-09-10T03:50:47Z
Severity
  • 6.9 (Medium) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:L/VA:L/SC:N/SI:N/SA:N CVSS Calculator
Summary
rkyv: Panic safety bugs in `InlineVec::clear` and `SerVec::clear` enable arbitrary code execution
Details

InlineVec::clear() and SerVec::clear() in rkyv were not panic-safe. Both functions iterate over their elements and call drop_in_place on each, updating self.len only after the loop. If an element's Drop implementation panics during the loop, self.len is left at its original value.

A subsequent invocation of clear() on the same container then re-visits the already-freed elements:

  • InlineVec::clear() is called again from InlineVec's own Drop implementation when the value is later dropped.
  • SerVec::clear() is called again by SerVec::with_capacity() after the user closure returns.

Technical Impact

  • CWE-415 (Double Free): Heap corruption when element type holds Box<T>
  • CWE-416 (Use-After-Free): Memory corruption when element reads from heap during Drop

Both vulnerabilities are triggerable entirely from safe Rust via std::panic::catch_unwind and require no special privileges.

Database specific
{
    "cwe_ids": [
        "CWE-415",
        "CWE-416"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-05-15T18:09:10Z",
    "nvd_published_at": null,
    "severity": "MODERATE"
}
References

Affected packages

crates.io / rkyv

Package

Affected ranges

Type
SEMVER
Events
Introduced
0.8.0
Fixed
0.8.16

Database specific

source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/05/GHSA-vfvv-c25p-m7mm/GHSA-vfvv-c25p-m7mm.json"