RustSec logo

HistoryEditJSON (OSV)

RUSTSEC-2026-0116

Improper check of an invariant resulting in incorrect bounds checks

Reported
Issued
Package
imageproc (crates.io)
Type
INFO Unsound
Categories
Keywords
#out-of-bounds-read #memory-safety
  • https://github.com/image-rs/imageproc/pull/777
Patched
  • >=0.23.1, <0.24.0
  • >=0.24.1, <0.25.0
  • >=0.25.1, <0.26.0
  • >=0.26.2

Description

A bounds verification of a slice storage of a 2-dimensional matrix's coefficients (a kernel) would compare the total size against the product of individual dimensions. This would erroneously cast after the multiplication and consequently fail to detect possible violations when overflow occurs.

Afterwards, the individual sizes were trusted to properly constrain coordinates within the matrix to indices valid for the underlying storage. With a crafted Kernel object, certain combinations of coordinates could then cause an out-of-bounds access in an unsafe function while fulfilling its documented preconditions. The kernel value could be passed to library functions that trusted the preconditions and then performed such reads.

Advisory available under CC0-1.0 license.