VYPR

Imagecli

by Theotherphil

Source repositories

CVEs (2)

  • CVE-2026-70378HigAug 5, 2026
    risk 0.49cvss 7.5epss 0.00

    imagecli's pipeline operation (Carve::apply in src/image_ops.rs) only asserts , 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…

  • CVE-2026-70377HigAug 5, 2026
    risk 0.49cvss 7.5epss 0.00

    imagecli's pipeline operation (Scale::apply in src/image_ops.rs) computes output width/height as (dimension as f32 * ratio) as u32 with no upper-bound validation on the CLI-supplied ratio, which is parsed via nom::number::complete::float with no range check. Any application…