CVE-2026-70378 PUBLISHED

imagecli: Negative carve Ratio Bypasses Bounds Check and Crashes Process via Reachable Panic

Assigner: TuranSec
Reserved: 04.08.2026 Published: 05.08.2026 Updated: 05.08.2026

imagecli's carve <ratio> pipeline operation (Carve::apply() in src/image_ops.rs) only asserts ratio <= 1.0, never validating that the ratio is positive. A negative ratio (e.g. -5) causes the computed target width to saturate to 0 via Rust's defined float-to-uint cast, which is then passed to imageproc::seam_carving::shrink_width — a function that panics when given a width below 2, crashing the process. This shares the same missing-input-validation root cause as the sibling scale finding in the same file but is an independently fixable, distinct code path.

Metrics

CVSS Vector: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
CVSS Score: 7.5

Product Status

Vendor theotherphil
Product imagecli
Versions Default: unknown
  • affected from 0 to 0.2.1 (incl.)

Credits

  • agrresore finder

References

Problem Types

  • CWE-1284 Improper Validation of Specified Quantity in Input CWE