CVE-2025-13879
BaseFortify
Publication date: 2025-12-02
Last updated on: 2025-12-02
Assigner: Spanish National Cybersecurity Institute, S.A. (INCIBE)
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| efficientip | solidserver_ipam | 8.4.1 |
| efficientip | solidserver_ipam | 8.2.3 |
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-13879 is a directory traversal vulnerability in EfficientIP's SOLIDserver IPAM version 8.2.3. It allows an authenticated user with administrator privileges to manipulate the 'directory' parameter in the endpoint '/mod/ajax.php?action=sections/list/list' to list directories outside their authorized scope. For example, setting the 'directory' parameter to '/' enables access to files outside the intended 'LOCAL:///' folder. This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory) and was fixed in version 8.4.1. [1]
How can this vulnerability impact me? :
This vulnerability can allow an authenticated administrator user to access and list files and directories beyond their authorized areas within the SOLIDserver IPAM system. Although the impact on confidentiality is low, unauthorized directory listing could expose sensitive configuration or system files, potentially aiding further attacks or information gathering. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the 'directory' parameter in the endpoint `/mod/ajax.php?action=sections/list/list` on SOLIDserver IPAM v8.2.3 with administrator credentials. For example, sending a request with the 'directory' parameter set to '/' and observing if files outside the intended LOCAL:/// folder are listed indicates the vulnerability. Specific commands would involve authenticated HTTP requests to this endpoint, such as using curl: `curl -u admin:password 'https://<target>/mod/ajax.php?action=sections/list/list&directory=/'`. Monitoring for unexpected directory listings outside authorized paths can help detect exploitation attempts. [1]
What immediate steps should I take to mitigate this vulnerability?
The immediate mitigation step is to upgrade SOLIDserver IPAM to version 8.4.1 or later, where this directory traversal vulnerability has been fixed. Until the upgrade can be applied, restrict administrator access to trusted users only and monitor for suspicious activity involving the 'directory' parameter in the affected endpoint. [1]