Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions crates/libafl_bolts/RUSTSEC-0000-0000.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
```toml
[advisory]
id = "RUSTSEC-0000-0000"
package = "libafl_bolts"
date = "2025-10-21"
url = "https://github.com/AFLplusplus/LibAFL/issues/3417"
references = ["https://github.com/AFLplusplus/LibAFL/pull/3435"]
informational = "unsound"
categories = ["memory-corruption"]
keywords = ["buffer-overflow", "soundness"]

[affected.functions]
"libafl_bolts::simd::covmap_is_interesting_simd" = ["<= 0.15.3"]
"libafl_bolts::simd::covmap_is_interesting_naive" = ["<= 0.15.3"]

[versions]
patched = []
```

# Out-of-bounds access in covmap_is_interesting functions

The safe functions `covmap_is_interesting_simd` and `covmap_is_interesting_naive` can cause undefined behavior through out-of-bounds memory access.

Both functions use `get_unchecked` to access the `hist` slice with indices based on the `map` slice length. When `hist.len() < map.len()`, this results in out-of-bounds access causing undefined behavior.