CVE-2025-46001
BaseFortify
Publication date: 2025-07-18
Last updated on: 2025-10-14
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| simogeo | filemanager | From 0.8 (inc) to 1.1 (inc) |
| simogeo | filemanager | From 1.5.0 (inc) to 2.0.0 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-434 | The product allows the upload or transfer of dangerous file types that are automatically processed within its environment. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in Filemanager v2.3.0 allows attackers to upload arbitrary files, including crafted PHP files, via the is_allowed_file_type() function. By uploading a malicious PHP file and then renaming it using a path traversal technique, attackers can place executable PHP code in a web-accessible directory. This enables them to execute arbitrary code on the server remotely. [1]
How can this vulnerability impact me? :
The vulnerability can lead to remote code execution on the affected server, allowing attackers to run arbitrary PHP code. This can result in full compromise of the server, unauthorized access to sensitive data, defacement, or use of the server for further attacks. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring for suspicious HTTP POST requests to filemanager.php with the parameter config=filemanager.config.js that upload files, especially those containing PHP code. Additionally, look for HTTP GET requests attempting to rename files using path traversal sequences like '....//' to change file extensions to .php or .html. Commands to detect such activity could include using network monitoring tools or web server logs analysis, for example, using grep on Apache logs: 1) grep 'filemanager.php' /var/log/apache2/access.log | grep 'config=filemanager.config.js' to find upload attempts; 2) grep 'rename' /var/log/apache2/access.log | grep '....//' to detect rename attempts exploiting path traversal. Also, scanning the /userfiles/ directory for recently uploaded or renamed PHP files can help identify exploitation attempts. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the vulnerable Filemanager v2.3.0 instance, especially the file upload and rename functionalities. Apply strict input validation and sanitization on file uploads and rename parameters to prevent arbitrary file uploads and path traversal. Restrict file types allowed for upload, disallowing executable files like PHP. Implement proper authentication and authorization to limit access to trusted users only. If possible, upgrade to a newer, patched version or migrate to a maintained alternative such as RichFileManager. Additionally, monitor and remove any suspicious uploaded files in the /userfiles/ directory to prevent code execution. [1, 2]