CVE-2025-11139
BaseFortify
Publication date: 2025-09-29
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| zhiyou-group | zhiyou_erp | to 11.0 (inc) |
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?
CVE-2025-11139 is a path traversal vulnerability in the Bjskzy Zhiyou ERP system up to version 11.0, specifically in the function uploadStudioFile of the component com.artery.form.services.FormStudioUpdater. This vulnerability occurs because the filepath argument is improperly handled, allowing an attacker to manipulate it to traverse directories outside the intended restricted directory. This enables unauthorized access or manipulation of files on the server. The vulnerability can be exploited remotely, and a proof-of-concept exploit is publicly available. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to access or manipulate files outside the intended directory on the affected ERP system. This can lead to unauthorized access, data breaches, disruption of business operations, and potentially unauthorized code execution or system compromise. Since the ERP system is critical for managing business processes, exploitation could severely affect confidentiality, integrity, and availability of your system. [1, 2]
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The vulnerability poses significant security risks that could lead to unauthorized access and data breaches, which may result in non-compliance with common standards and regulations such as GDPR and HIPAA. Since the affected ERP system is used in regulated industries and handles sensitive business data, exploitation could compromise data confidentiality and integrity, thereby impacting compliance requirements. [2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
Detection of this vulnerability involves monitoring for suspicious activity related to the uploadStudioFile function, especially attempts to manipulate the filepath argument for path traversal. Since a public proof-of-concept exploit is available, network intrusion detection systems (NIDS) or web application firewalls (WAF) can be configured to detect payloads containing directory traversal patterns such as '../' or encoded equivalents in requests targeting the uploadStudioFile endpoint. Additionally, reviewing server logs for unusual file upload paths or unexpected file creations outside intended directories can help identify exploitation attempts. Specific commands depend on the environment, but example commands include using grep to search logs for suspicious patterns: grep -r "uploadStudioFile" /var/log/ and grep -r "\.\./" /var/log/ to find path traversal attempts. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting or disabling the uploadStudioFile functionality if possible, applying strict input validation and sanitization on the filepath argument to prevent path traversal, and implementing access controls to limit file system access by the ERP application. Since no patches or vendor mitigations are available, consider isolating the affected system from untrusted networks, monitoring for exploitation attempts, and planning to replace or upgrade the affected product. Deploying web application firewalls (WAF) rules to block path traversal payloads targeting the uploadStudioFile endpoint can also reduce risk. [1, 2]