CVE-2026-35718
Path Traversal in VIVOTEK FD8136-VVTK Firmware
Publication date: 2026-06-02
Last updated on: 2026-06-02
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| vivotek | fd8136-vvtk | 0300a |
| vivotek | fd8136 | vvtk_firmware_0300a |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2026-35718 is an authenticated path traversal vulnerability in the VIVOTEK FD8136 camera's downloadMedias.cgi script, specifically in firmware version FD8136-VVTK-0300a.
The vulnerability arises because the script, which is intended to allow users to download media files from the /mnt/auto/ directory, does not properly validate user-supplied file paths.
It uses a decode.sh function that only checks if the path starts with /mnt/auto/ by comparing the prefix, but this check can be bypassed by including path traversal sequences like '/../'.
As a result, an authenticated attacker can craft a request with a malicious path such as /mnt/auto/../../../etc/passwd, which the system resolves to access sensitive files outside the intended directory.
This allows reading arbitrary files on the device, including sensitive system files, network configurations, device settings, and stored credentials.
How can this vulnerability impact me? :
This vulnerability can have serious impacts because it allows an authenticated attacker to read any file on the affected device.
- Exposure of sensitive system files such as /etc/passwd, which could reveal user account information.
- Access to network configuration files, potentially revealing network topology or credentials.
- Disclosure of device settings and stored credentials, which could facilitate further attacks or unauthorized access.
Overall, this could lead to compromise of the device, unauthorized data access, and potential escalation of privileges.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for requests to the /admin/downloadMedias.cgi endpoint that include path traversal sequences such as '/../' in the parameters used to specify file paths.
Since the vulnerability requires authentication, monitoring authenticated HTTP requests to this endpoint for suspicious path parameters is key.
- Use network traffic analysis tools (e.g., tcpdump, Wireshark) to filter HTTP requests to /admin/downloadMedias.cgi containing '/../' sequences.
- On the device, review web server logs for authenticated requests to /admin/downloadMedias.cgi with parameters including path traversal patterns.
- Example command to search logs for suspicious requests: grep -E "/admin/downloadMedias.cgi.*(\.\./)" /var/log/httpd/access.log
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the /admin/downloadMedias.cgi endpoint to trusted users only, as the vulnerability requires authentication.
Additionally, monitor and audit access logs for suspicious activity involving path traversal attempts.
If possible, disable or restrict the downloadMedias.cgi functionality until a firmware update or patch is available.
Apply any available firmware updates from VIVOTEK that address this vulnerability once released.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability allows authenticated attackers to read arbitrary files on the device, including sensitive files such as network configurations, device settings, and stored credentials.
This unauthorized access to sensitive information could lead to violations of data protection standards and regulations like GDPR and HIPAA, which require strict controls over access to personal and sensitive data.
Therefore, exploitation of this vulnerability may compromise compliance by exposing protected data and failing to maintain confidentiality and integrity as mandated by these regulations.