CVE-2025-10447
BaseFortify
Publication date: 2025-09-15
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 |
|---|---|---|
| campcodes | online_job_finder_system | 1.0 |
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. |
| CWE-284 | The product does not restrict or incorrectly restricts access to a resource from an unauthorized actor. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-10447 is a critical unrestricted file upload vulnerability in Campcodes Online Job Finder System version 1.0, specifically in the '/eris/applicationform.php' endpoint. It allows remote attackers to upload arbitrary malicious files, such as web shells, without any authentication or authorization. This happens due to insufficient validation of the uploaded files, particularly through the manipulation of the 'picture' argument. Once exploited, attackers can execute arbitrary code on the server with the web server's privileges, leading to full compromise of the system's confidentiality, integrity, and availability. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can lead to a complete compromise of the affected server. Attackers can upload malicious scripts that enable remote code execution, allowing them to execute arbitrary commands on the server. This can result in unauthorized control over the system, data breaches, data manipulation, service disruption, and loss of confidentiality, integrity, and availability of the system and its data. [1, 2, 3]
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 file uploads to the '/eris/applicationform.php' endpoint, especially POST requests containing multipart/form-data with files uploaded via the 'picture' argument. One can look for web shells or unusual PHP files in the upload directories such as '/eris/applicant/photos/'. A suggested detection method includes searching for files with suspicious names or extensions in the upload directory. Additionally, Google dorking with the query 'inurl:eris/applicationform.php' can help identify vulnerable targets externally. Example commands to detect suspicious files on the server include: 1) find /path/to/webroot/eris/applicant/photos/ -name '*.php' 2) grep -r 'shell' /path/to/webroot/eris/applicant/photos/ 3) monitoring web server logs for POST requests to '/eris/applicationform.php' or '/eris/process.php?action=submitapplication&JOBID=2' with file uploads. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: 1) Implement server-side allow-list validation for file extensions and MIME types, permitting only safe types such as '.jpg' with 'image/jpeg' MIME type. 2) Sanitize file metadata by renaming uploaded files to random names (e.g., UUIDs) and removing original path information. 3) Store uploaded files outside the web root and serve them via authenticated proxy scripts to prevent direct URL access. 4) Reprocess uploaded images using libraries like GD or ImageMagick to strip any embedded malicious code. 5) Restrict or disable file uploads if not necessary. These steps help prevent attackers from uploading malicious scripts and gaining remote code execution on the server. [1]