RUSTSEC-2026-0306

Source
https://rustsec.org/advisories/RUSTSEC-2026-0306
Import Source
https://github.com/rustsec/advisory-db/blob/osv/crates/RUSTSEC-2026-0306.json
JSON Data
https://api.osv.dev/v1/vulns/RUSTSEC-2026-0306
Published
2026-09-20T12:00:00Z
Modified
2026-09-23T14:15:03Z
Summary
`hex_decode_unchecked` AVX2 path reads past `src`
Details

faster_hex::hex_decode_unchecked is a safe function. On x86 and x86_64, when AVX2 is enabled, hex_decode_avx2 keeps decoding while dst.len() >= 32 and then loads 32 bytes from src and 32 bytes from src[32..]. Nothing in that loop requires src to contain 64 bytes.

A safe caller can pass a short src and a dst of at least 32 bytes. The AVX2 load then reads outside src.

The function has had this shape since 0.3.0. 0.10.0 is the last release with the unbounded AVX2 read. The maintainer agreed to this advisory and shipped the backport in 0.10.1 (pull request 74): the AVX2 loop now requires src.len() >= 64 before those loads. 1.0.0 rewrites hex_decode_unchecked so the decoded length is min(src.len() / 2, dst.len()). Both are covered by >= 0.10.1. Other architectures take the scalar fallback and are outside this advisory.

Database specific
{
    "license":  "CC0-1.0"
}
References

Affected packages

crates.io / faster-hex

Package

Name
faster-hex
View open source insights on deps.dev
Purl
pkg:cargo/faster-hex

Affected ranges

Type
SEMVER
Events
Introduced
0.3.0
Fixed
0.10.1

Ecosystem specific

{
    "affected_functions":  null,
    "affects":  {
        "arch":  [
            "x86",
            "x86_64"
        ],
        "functions":  [
            "faster_hex::hex_decode_unchecked"
        ],
        "os":  []
    }
}

Database specific

categories
[
    "memory-corruption"
]
cvss
null
informational
"unsound"
source
"https://github.com/rustsec/advisory-db/blob/osv/crates/RUSTSEC-2026-0306.json"