Skip to main content

Boteraser | Website and Server Security Solutions

🛡️ CVE-2026-56364 — imagemagick

🟢 CVSS 1.9 — Low ⚠️ Exploit Public CWE-401 NVD
1.9
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

ImageMagick has a Memory Leak in LoadOpenCLDeviceBenchmark() when parsing malformed XML

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):

```c

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):

```c

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

```bash

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

```bash

mkdir -p ~/.cache/ImageMagick

cp malformed_opencl_profile.xml ~/.cache/ImageMagick/ImagemagickOpenCLDeviceProfile.xml

```

Step 4: Run ImageMagick with leak detection

```bash

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

How this vulnerability can be exploited

This issue can be reached with local access to the system, attack complexity is high, an attacker needs administrative privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity none, availability low.

CVSS metrics in full

The score comes from this vector: CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:N/I:N/A:L

  • Attack vector: Local — a local account, shell or session on the host is needed.
  • Attack complexity: High — the attacker first has to win a race, learn a secret or otherwise prepare the target.
  • Privileges required: High — administrative rights are needed first.
  • User interaction: None — nobody has to be tricked into anything.
  • Scope: Unchanged — the damage stays inside the vulnerable component.
  • Confidentiality impact: None.
  • Integrity impact: None.
  • Availability impact: Low — limited, and the attacker does not choose what is affected.

Weakness class

CVE-2026-56364 is classified as CWE-401: Memory Leak. Allocated memory is never released, so long-running or repeated operations gradually exhaust it.

Affected software

CVE-2026-56364 is recorded against 20 packages.

  • imagemagick (fixed in 7.1.2-13)
  • magick.net-q16-anycpu (fixed in 14.10.2)
  • magick.net-q16-arm64 (fixed in 14.10.2)
  • magick.net-q16-hdri-anycpu (fixed in 14.10.2)
  • magick.net-q16-hdri-arm64 (fixed in 14.10.2)
  • magick.net-q16-hdri-openmp-arm64 (fixed in 14.10.2)
  • magick.net-q16-hdri-openmp-x64 (fixed in 14.10.2)
  • magick.net-q16-hdri-x64 (fixed in 14.10.2)
  • magick.net-q16-hdri-x86 (fixed in 14.10.2)
  • magick.net-q16-openmp-arm64 (fixed in 14.10.2)
  • magick.net-q16-openmp-x64 (fixed in 14.10.2)
  • magick.net-q16-openmp-x86 (fixed in 14.10.2)
  • magick.net-q16-x64 (fixed in 14.10.2)
  • magick.net-q16-x86 (fixed in 14.10.2)
  • magick.net-q8-anycpu (fixed in 14.10.2)
  • magick.net-q8-arm64 (fixed in 14.10.2)
  • magick.net-q8-openmp-arm64 (fixed in 14.10.2)
  • magick.net-q8-openmp-x64 (fixed in 14.10.2)
  • magick.net-q8-x64 (fixed in 14.10.2)
  • magick.net-q8-x86 (fixed in 14.10.2)

Timeline and source

Published on 30 June 2026 and last revised on 2 July 2026. A public exploit is known to exist, which raises the urgency of patching considerably. A vendor advisory or fix has been published. Record sourced from NVD.

References

github.com
github.com
www.vulncheck.com
github.com

Other advisories for this package

imagemagick has other advisories on record. If you are patching this one, these are worth checking on the same host:

Same weakness in other software

These advisories are the same class of weakness (CWE-401: Memory Leak) in other software:

Details

Severity LOW
CVSS Score 1.9
CVSS Vector CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:U/C:N/I:N/A:L
CWE CWE-401
Public Exploit ⚠️ Yes
Source NVD
Published 2026-06-30
Updated 2026-08-20
Modified 2026-07-02

Affected Packages

Software From version Fixed in
imagemagick 7.1.2-13
magick.net-q16-anycpu 14.10.2
magick.net-q16-arm64 14.10.2
magick.net-q16-hdri-anycpu 14.10.2
magick.net-q16-hdri-arm64 14.10.2
magick.net-q16-hdri-openmp-arm64 14.10.2
magick.net-q16-hdri-openmp-x64 14.10.2
magick.net-q16-hdri-x64 14.10.2
magick.net-q16-hdri-x86 14.10.2
magick.net-q16-openmp-arm64 14.10.2
magick.net-q16-openmp-x64 14.10.2
magick.net-q16-openmp-x86 14.10.2
magick.net-q16-x64 14.10.2
magick.net-q16-x86 14.10.2
magick.net-q8-anycpu 14.10.2
magick.net-q8-arm64 14.10.2
magick.net-q8-openmp-arm64 14.10.2
magick.net-q8-openmp-x64 14.10.2
magick.net-q8-x64 14.10.2
magick.net-q8-x86 14.10.2

Similar Threats

Exploit Protection

Are you running imagemagick?

CVE-2026-56364 carries CVSS 1.9 Low rating and a public exploit already exists. BotEraser checks your installation against this and other known CVE records, and blocks IPs associated with exploit activity.

Check My Site For CVE-2026-56364 →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.

Browse related advisories

All advisoriesCVECVE 2026