CVE-2026-29522
Local File Inclusion in ZwickRoell Test Data Management Allows Sensitive File Disclosure
Publication date: 2026-03-16
Last updated on: 2026-03-16
Assigner: VulnCheck
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| zwickroell | test_data_management | to 3.0.8 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-22 | The product uses external input to construct a pathname that is intended to identify a file or directory that is located underneath a restricted parent directory, but the product does not properly neutralize special elements within the pathname that can cause the pathname to resolve to a location that is outside of the restricted directory. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
[{'type': 'paragraph', 'content': 'CVE-2026-29522 is a high-severity local file inclusion (LFI) vulnerability found in ZwickRoell Test Data Management versions prior to 3.0.8. It exists in the /server/node_upgrade_srv.js endpoint, where an unauthenticated attacker can exploit the "firmware" parameter by supplying directory traversal sequences. This allows the attacker to access arbitrary files on the server, potentially disclosing sensitive system files.'}] [1]
How can this vulnerability impact me? :
This vulnerability can lead to unauthorized disclosure of sensitive system files because an attacker can access arbitrary files on the server without any authentication or user interaction. The attack can be performed remotely over the network and requires no privileges, making it highly dangerous. Such information disclosure could compromise system security and confidentiality.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': 'The vulnerability exists in the /server/node_upgrade_srv.js endpoint where an unauthenticated attacker can supply directory traversal sequences via the "firmware" parameter to access arbitrary files. Detection can involve monitoring HTTP requests to this endpoint for suspicious directory traversal patterns such as "../" sequences in the firmware parameter.'}, {'type': 'paragraph', 'content': 'A possible command to detect exploitation attempts in web server logs could be using grep to search for directory traversal patterns in requests to the vulnerable endpoint, for example:'}, {'type': 'list_item', 'content': 'grep -i "/server/node_upgrade_srv.js" /var/log/nginx/access.log | grep "firmware=.*\\.\\./"'}, {'type': 'paragraph', 'content': 'Additionally, network intrusion detection systems (NIDS) can be configured to alert on HTTP requests containing directory traversal sequences targeting the firmware parameter on this endpoint.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
The primary mitigation step is to upgrade ZwickRoell Test Data Management to version 3.0.8 or later, where this local file inclusion vulnerability has been fixed.
Until the upgrade can be applied, it is advisable to restrict access to the /server/node_upgrade_srv.js endpoint, for example by implementing network-level access controls or web application firewall (WAF) rules to block requests containing directory traversal sequences in the firmware parameter.
Monitoring and alerting on suspicious requests to this endpoint can also help in early detection and response.