CVE-2022-24720 – image_processing
Package
Manager: gem
Name: image_processing
Vulnerable Version: >=0 <1.12.2
Severity
Level: Critical
CVSS v3.1: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CVSS v4.0: CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N
EPSS: 0.00835 pctl0.73762
Details
Remote shell execution vulnerability in image_processing ### Impact When using the `#apply` method from image_processing to apply a series of operations that are coming from unsanitized user input, this allows the attacker to execute shell commands: ```rb ImageProcessing::Vips.apply({ system: "echo EXECUTED" }) #>> EXECUTED ``` This method is called internally by Active Storage variants, so Active Storage is vulnerable as well. ### Patches The vulnerability has been fixed in version 1.12.2 of image_processing. ### Workarounds If you're processing based on user input, it's highly recommended that you always sanitize the user input, by allowing only a constrained set of operations. For example: ```rb operations = params[:operations] .map { |operation| [operation[:name], *operation[:value]] } .select { |name, *| name.to_s.include? %w[resize_to_limit strip ...] } # sanitization ImageProcessing::Vips.apply(operations) ```
Metadata
Created: 2022-03-01T22:22:26Z
Modified: 2022-03-10T15:56:28Z
Source: https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2022/03/GHSA-cxf7-qrc5-9446/GHSA-cxf7-qrc5-9446.json
CWE IDs: ["CWE-20", "CWE-78"]
Alternative ID: GHSA-cxf7-qrc5-9446
Finding: F404
Auto approve: 1