CVE-2025-7625
BaseFortify
Publication date: 2025-07-14
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 |
|---|---|---|
| yijiusmile | kkfileviewofficeedit | to 2019-03-19 (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-7625 is a critical path traversal vulnerability in the YiJiuSmile kkFileViewOfficeEdit software, specifically in the Download function of the /download endpoint. The vulnerability occurs because the 'url' parameter is not properly sanitized, allowing an attacker to manipulate the file path and access files outside the intended directory. This enables unauthorized arbitrary file reading remotely without authentication, potentially exposing sensitive system files. [1, 3]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to remotely read arbitrary files on your system without authorization. This can lead to exposure of sensitive or confidential information stored on the server, potentially compromising system confidentiality and security. Since the exploit is publicly available and easy to execute, it poses a significant risk if the affected software is in use and unpatched. [1, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring HTTP requests to the /download endpoint that include suspicious or unexpected 'url' parameters attempting path traversal or arbitrary file access. For example, you can use network traffic inspection tools or web server logs to look for requests like '/download?url=../../../../etc/passwd' or '/download?url=C:/Windows/win.ini'. A simple command to test the vulnerability on the server could be using curl: curl 'http://<target-ip>:<port>/download?url=C:/Windows/win.ini' or curl 'http://<target-ip>:<port>/download?url=../../../../etc/passwd'. If the server returns file contents, the vulnerability is present. [3]
What immediate steps should I take to mitigate this vulnerability?
There are no known patches or fixes available for this vulnerability as the vendor uses continuous delivery without versioning and no mitigations have been documented. Immediate mitigation steps include restricting or disabling access to the /download endpoint if possible, implementing network-level controls such as firewall rules to limit access to the affected service, and monitoring for exploit attempts. Ultimately, it is recommended to consider replacing the affected product with an alternative solution to avoid exploitation. [1]