GHSA-QP59-X883-77QV

GHSA-QP59-X883-77QV is a medium-severity security vulnerability in Magick.NET-Q8-x64 (nuget), affecting versions < 14.10.2. It is fixed in 14.10.2.

Summary

A memory leak vulnerability exists in the LoadOpenCLDeviceBenchmark() function in MagickCore/opencl.c. When parsing a malformed OpenCL device profile XML file that contains <device elements without proper /> closing tags, the function fails to release allocated memory for string members (platform_name, vendor_name, name, version), leading to memory leaks that could result in resource exhaustion.

Affected Version: ImageMagick 7.1.2-12 and possibly earlier versions

Details

The vulnerability is located in MagickCore/opencl.c, function LoadOpenCLDeviceBenchmark() (lines 754-911).

Root Cause Analysis:

  1. When a <device tag is encountered, a MagickCLDeviceBenchmark structure is allocated (line 807-812)
  2. String attributes (platform, vendor, name, version) are allocated via ConstantString() (lines 878, 885, 898, 900)
  3. These strings are only freed when a /> closing tag is encountered (lines 840-849)
  4. At function exit (lines 908-910), only the device_benchmark structure is freed, but its member variables are not freed if /> was never parsed

Vulnerable Code (lines 908-910):

token=(char *) RelinquishMagickMemory(token);
device_benchmark=(MagickCLDeviceBenchmark *) RelinquishMagickMemory(
  device_benchmark);  // BUG: members (platform_name, vendor_name, name, version) not freed!

Correct cleanup (only executed when /> is found, lines 840-849):

device_benchmark->platform_name=(char *) RelinquishMagickMemory(device_benchmark->platform_name);
device_benchmark->vendor_name=(char *) RelinquishMagickMemory(device_benchmark->vendor_name);
device_benchmark->name=(char *) RelinquishMagickMemory(device_benchmark->name);
device_benchmark->version=(char *) RelinquishMagickMemory(device_benchmark->version);
device_benchmark=(MagickCLDeviceBenchmark *) RelinquishMagickMemory(device_benchmark);

PoC

Environment:

  • OS: Ubuntu 22.04.5 LTS (Linux 6.8.0-87-generic x86_64)
  • Compiler: GCC 11.4.0
  • ImageMagick: 7.1.2-13 (commit a52c1b402be08ef8ae193f28ac5b2e120f2fa26f)

Step 1: Build ImageMagick with AddressSanitizer

cd ImageMagick
./configure \
    CFLAGS="-g -O0 -fsanitize=address -fno-omit-frame-pointer" \
    CXXFLAGS="-g -O0 -fsanitize=address -fno-omit-frame-pointer" \
    LDFLAGS="-fsanitize=address" \
    --disable-openmp
make -j$(nproc)

Step 2: Create malformed XML file

Step 3: Place file in OpenCL cache directory

mkdir -p ~/.cache/ImageMagick
cp malformed_opencl_profile.xml ~/.cache/ImageMagick/ImagemagickOpenCLDeviceProfile.xml

Step 4: Run ImageMagick with leak detection

export ASAN_OPTIONS="detect_leaks=1:symbolize=1"
./utilities/magick -size 100x100 xc:red output.png

ASAN Output:

=================================================================
==2543490==ERROR: LeakSanitizer: detected memory leaks

Direct leak of 96 byte(s) in 2 object(s) allocated from:
    #0 ... in AcquireMagickMemory MagickCore/memory.c:536
    #1 ... in LoadOpenCLDeviceBenchmark MagickCore/opencl.c:807

Direct leak of 16 byte(s) in 1 object(s) allocated from:
    #0 ... in ConstantString MagickCore/string.c:692
    #1 ... in LoadOpenCLDeviceBenchmark MagickCore/opencl.c:878  ← name

Direct leak of 14 byte(s) in 1 object(s) allocated from:
    #0 ... in ConstantString MagickCore/string.c:692
    #1 ... in LoadOpenCLDeviceBenchmark MagickCore/opencl.c:885  ← platform_name

Direct leak of 14 byte(s) in 1 object(s) allocated from:
    #0 ... in ConstantString MagickCore/string.c:692
    #1 ... in LoadOpenCLDeviceBenchmark MagickCore/opencl.c:898  ← vendor_name

Direct leak of 15 byte(s) in 1 object(s) allocated from:
    #0 ... in ConstantString MagickCore/string.c:692
    #1 ... in LoadOpenCLDeviceBenchmark MagickCore/opencl.c:900  ← version

SUMMARY: AddressSanitizer: 203 byte(s) leaked in 18 allocation(s).

Impact

Vulnerability Type: CWE-401 (Missing Release of Memory after Effective Lifetime)

Severity: Low

Who is impacted:

  • Users who have OpenCL enabled in ImageMagick
  • Systems where an attacker can place or modify files in the OpenCL cache directory (~/.cache/ImageMagick/)
  • Long-running ImageMagick processes or services that repeatedly initialize OpenCL

Potential consequences:

  • Memory exhaustion over time if the malformed configuration is repeatedly loaded
  • Denial of Service (DoS) in resource-constrained environments

Attack Vector: Local - requires write access to the user's OpenCL cache directory

GHSA-QP59-X883-77QV has a CVSS score of 6.5 (Medium). The vector is network-reachable, no privileges required, and no user interaction. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (14.10.2); upgrading removes the vulnerable code path.

Affected versions

Magick.NET-Q8-x64 (< 14.10.2) Magick.NET-Q8-arm64 (< 14.10.2) Magick.NET-Q8-x86 (< 14.10.2) Magick.NET-Q8-OpenMP-x64 (< 14.10.2) Magick.NET-Q8-OpenMP-arm64 (< 14.10.2) Magick.NET-Q16-x64 (< 14.10.2) Magick.NET-Q16-arm64 (< 14.10.2) Magick.NET-Q16-x86 (< 14.10.2) Magick.NET-Q16-OpenMP-x64 (< 14.10.2) Magick.NET-Q16-OpenMP-arm64 (< 14.10.2) Magick.NET-Q16-OpenMP-x86 (< 14.10.2) Magick.NET-Q16-HDRI-x64 (< 14.10.2) Magick.NET-Q16-HDRI-arm64 (< 14.10.2) Magick.NET-Q16-HDRI-x86 (< 14.10.2) Magick.NET-Q16-HDRI-OpenMP-x64 (< 14.10.2) Magick.NET-Q16-HDRI-OpenMP-arm64 (< 14.10.2) Magick.NET-Q8-AnyCPU (< 14.10.2) Magick.NET-Q16-AnyCPU (< 14.10.2) Magick.NET-Q16-HDRI-AnyCPU (< 14.10.2)

Security releases

Magick.NET-Q8-x64 → 14.10.2 (nuget) Magick.NET-Q8-arm64 → 14.10.2 (nuget) Magick.NET-Q8-x86 → 14.10.2 (nuget) Magick.NET-Q8-OpenMP-x64 → 14.10.2 (nuget) Magick.NET-Q8-OpenMP-arm64 → 14.10.2 (nuget) Magick.NET-Q16-x64 → 14.10.2 (nuget) Magick.NET-Q16-arm64 → 14.10.2 (nuget) Magick.NET-Q16-x86 → 14.10.2 (nuget) Magick.NET-Q16-OpenMP-x64 → 14.10.2 (nuget) Magick.NET-Q16-OpenMP-arm64 → 14.10.2 (nuget) Magick.NET-Q16-OpenMP-x86 → 14.10.2 (nuget) Magick.NET-Q16-HDRI-x64 → 14.10.2 (nuget) Magick.NET-Q16-HDRI-arm64 → 14.10.2 (nuget) Magick.NET-Q16-HDRI-x86 → 14.10.2 (nuget) Magick.NET-Q16-HDRI-OpenMP-x64 → 14.10.2 (nuget) Magick.NET-Q16-HDRI-OpenMP-arm64 → 14.10.2 (nuget) Magick.NET-Q8-AnyCPU → 14.10.2 (nuget) Magick.NET-Q16-AnyCPU → 14.10.2 (nuget) Magick.NET-Q16-HDRI-AnyCPU → 14.10.2 (nuget)

Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.

See it in your environment

Remediation advice

Upgrade the following packages to resolve this vulnerability:

Magick.NET-Q8-x64 to 14.10.2 or later; Magick.NET-Q8-arm64 to 14.10.2 or later; Magick.NET-Q8-x86 to 14.10.2 or later; Magick.NET-Q8-OpenMP-x64 to 14.10.2 or later; Magick.NET-Q8-OpenMP-arm64 to 14.10.2 or later; Magick.NET-Q16-x64 to 14.10.2 or later; Magick.NET-Q16-arm64 to 14.10.2 or later; Magick.NET-Q16-x86 to 14.10.2 or later; Magick.NET-Q16-OpenMP-x64 to 14.10.2 or later; Magick.NET-Q16-OpenMP-arm64 to 14.10.2 or later; Magick.NET-Q16-OpenMP-x86 to 14.10.2 or later; Magick.NET-Q16-HDRI-x64 to 14.10.2 or later; Magick.NET-Q16-HDRI-arm64 to 14.10.2 or later; Magick.NET-Q16-HDRI-x86 to 14.10.2 or later; Magick.NET-Q16-HDRI-OpenMP-x64 to 14.10.2 or later; Magick.NET-Q16-HDRI-OpenMP-arm64 to 14.10.2 or later; Magick.NET-Q8-AnyCPU to 14.10.2 or later; Magick.NET-Q16-AnyCPU to 14.10.2 or later; Magick.NET-Q16-HDRI-AnyCPU to 14.10.2 or later

Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.

Frequently Asked Questions

  1. What is GHSA-QP59-X883-77QV? GHSA-QP59-X883-77QV is a medium-severity security vulnerability in Magick.NET-Q8-x64 (nuget), affecting versions < 14.10.2. It is fixed in 14.10.2.
  2. How severe is GHSA-QP59-X883-77QV? GHSA-QP59-X883-77QV has a CVSS score of 6.5 (Medium). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
  3. Which packages are affected by GHSA-QP59-X883-77QV?
    • Magick.NET-Q8-x64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q8-arm64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q8-x86 (nuget) (versions < 14.10.2)
    • Magick.NET-Q8-OpenMP-x64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q8-OpenMP-arm64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-x64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-arm64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-x86 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-OpenMP-x64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-OpenMP-arm64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-OpenMP-x86 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-HDRI-x64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-HDRI-arm64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-HDRI-x86 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-HDRI-OpenMP-x64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-HDRI-OpenMP-arm64 (nuget) (versions < 14.10.2)
    • Magick.NET-Q8-AnyCPU (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-AnyCPU (nuget) (versions < 14.10.2)
    • Magick.NET-Q16-HDRI-AnyCPU (nuget) (versions < 14.10.2)
  4. Is there a fix for GHSA-QP59-X883-77QV? Yes. GHSA-QP59-X883-77QV is fixed in 14.10.2. Upgrade to this version or later.
  5. Is GHSA-QP59-X883-77QV exploitable, and should I be worried? Whether GHSA-QP59-X883-77QV is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
  6. What actually determines whether GHSA-QP59-X883-77QV is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
  7. How do I fix GHSA-QP59-X883-77QV?
    • Upgrade Magick.NET-Q8-x64 to 14.10.2 or later
    • Upgrade Magick.NET-Q8-arm64 to 14.10.2 or later
    • Upgrade Magick.NET-Q8-x86 to 14.10.2 or later
    • Upgrade Magick.NET-Q8-OpenMP-x64 to 14.10.2 or later
    • Upgrade Magick.NET-Q8-OpenMP-arm64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-x64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-arm64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-x86 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-OpenMP-x64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-OpenMP-arm64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-OpenMP-x86 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-HDRI-x64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-HDRI-arm64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-HDRI-x86 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-HDRI-OpenMP-x64 to 14.10.2 or later
    • Upgrade Magick.NET-Q16-HDRI-OpenMP-arm64 to 14.10.2 or later
    • Upgrade Magick.NET-Q8-AnyCPU to 14.10.2 or later
    • Upgrade Magick.NET-Q16-AnyCPU to 14.10.2 or later
    • Upgrade Magick.NET-Q16-HDRI-AnyCPU to 14.10.2 or later

Other vulnerabilities in Magick.NET-Q8-x64

CVE-2026-53465CVE-2026-53464CVE-2026-53463CVE-2026-53462CVE-2026-53461

Stop the waste.
Protect your environment with Kodem.