CVE-2024-27480
Insecure File Upload Vulnerability in givanz VvvebJs
Publication date: 2025-12-29
Last updated on: 2025-12-29
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| givanz | vvebjs | 1.7.2 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
The vulnerability in givanz VvvebJs 1.7.2 is an Insecure File Upload issue, which means the software does not properly validate or restrict files that users can upload. This can allow attackers to upload malicious files to the system.
How can this vulnerability impact me? :
This vulnerability can allow attackers to upload malicious files, potentially leading to unauthorized code execution, data compromise, or system takeover.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by attempting to upload files to the `/upload.php` endpoint of the VvvebJs application and checking if arbitrary files can be uploaded and executed. A practical detection method is to use a script or commands that upload a test file (e.g., a PHP file) and then attempt to execute it via a GET request. For example, using curl commands: 1) Upload a file: `curl -F '[email protected]' http://localhost:8080/upload.php` 2) Execute the uploaded file: `curl http://localhost:8080/test.php?0=id` If the response shows command execution output, the vulnerability exists. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting file uploads to the `/upload.php` endpoint, implementing strict server-side validation to allow only safe file types, and applying access controls to prevent unauthorized file execution. Additionally, updating VvvebJs to a version later than 1.7.4 (if available) or applying vendor patches can help remediate the issue. [1]