Files
advisory-db/crates/fast-float/RUSTSEC-2025-0003.md
2025-10-28 07:02:18 +01:00

968 B
Raw Permalink Blame History

[advisory]
id = "RUSTSEC-2025-0003"
package = "fast-float"
date = "2025-01-13"
url = "https://github.com/aldanor/fast-float-rust/issues/38"
categories = ["memory-exposure"]
aliases = ["GHSA-8655-xgh5-5vvq"]

[affected]
functions = { "fast_float::common::AsciiStr::first" = ["*"] }

[versions]
patched = []

Segmentation fault due to lack of bound check

In this case, the "fast_float::common::AsciiStr::first" method within the "AsciiStr" struct uses the unsafe keyword to reading from memory without performing bounds checking. Specifically, it directly dereferences a pointer offset by "self.ptr". Because of the above reason, the method accesses invalid memory address when it takes an empty string as its input. This approach violates Rusts memory safety guarantees, as it can lead to invalid memory access if empty buffer is provided.

No patched version for fast-float crate has been released, but a patch is available in the fast-float2 fork.