CVE-2025-14642
BaseFortify
Publication date: 2025-12-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 |
|---|---|---|
| carmelo | computer_laboratory_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?
This vulnerability exists in the code-projects Computer Laboratory System 1.0, specifically in an unknown function within the file technical_staff_pic.php. It involves manipulation of the 'image' argument, which leads to unrestricted file upload. This means an attacker can remotely upload files without proper restrictions, potentially allowing malicious files to be placed on the system.
How can this vulnerability impact me? :
The vulnerability can allow an attacker to remotely upload arbitrary files to the system, which may lead to unauthorized access, data modification, or disruption of service. This could compromise the confidentiality, integrity, and availability of the affected system.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by checking for the presence of the vulnerable file technical_staff_pic.php or admin_pic.php on your system, and by monitoring for suspicious file uploads to the uploads/ directory. Attackers may use Google dorking with the query inurl:technical_staff_pic.php to identify vulnerable targets. On your system, you can search for recently uploaded files with suspicious extensions or double extensions (e.g., shell.php.jpg) in the uploads/ directory. Example commands include: 1) Finding the vulnerable file: `find /var/www/html -name technical_staff_pic.php` 2) Listing suspicious files in uploads directory: `find /var/www/html/uploads/ -type f \( -name "*.php" -o -name "*.php.*" -o -name "*.php.jpg" \)` 3) Checking web server logs for POST requests to technical_staff_pic.php or admin_pic.php: `grep -i "POST /technical_staff_pic.php" /var/log/apache2/access.log` or `grep -i "POST /admin/admin_pic.php" /var/log/apache2/access.log` These steps help detect exploitation attempts or presence of malicious uploads. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the vulnerable file technical_staff_pic.php (and admin_pic.php if present), especially for users with high privileges. Since no known countermeasures or patches are documented, it is recommended to replace the affected component with an alternative product. Additionally, restrict file upload permissions, implement strict validation on uploaded files (checking file extensions, MIME types, and content), and monitor the uploads/ directory for unauthorized files. Applying network-level controls to limit access to the upload functionality and increasing authentication requirements can also help reduce risk. [1, 3]