CVE-2025-10573
Stored XSS in Ivanti Endpoint Manager
Executive Summary
CVE-2025-10573 is a high severity vulnerability affecting appsec. It is classified as Cross-Site Scripting (XSS). Ensure your systems and dependencies are patched immediately to mitigate exposure risks.
Precogs AI Insight
"Precogs AI maps educational vulnerabilities to their root CWE weakness patterns, enabling developers to understand the fundamental code-level causes and prevent entire classes of vulnerabilities."
What is this vulnerability?
CVE-2025-10573 is categorized as a critical Cross-Site Scripting (XSS) flaw. Based on our vulnerability intelligence, this issue occurs when the application fails to securely handle untrusted data boundaries.
Stored XSS in Ivanti Endpoint Manager. CVSS 7.5 — Persistent cross-site scripting in enterprise endpoint management.
This architectural defect enables adversaries to bypass intended security controls, directly manipulating the application's execution state or data layer. Immediate strategic intervention is required.
Risk Assessment
| Metric | Value |
|---|---|
| CVSS Base Score | 7.5 (HIGH) |
| Vector String | N/A |
| Published | March 21, 2026 |
| Last Modified | March 21, 2026 |
| Related CWEs | CWE-79 |
Impact on Systems
✅ Session Hijacking: Attackers can steal active user session tokens (cookies) to impersonate the victim.
✅ Phishing Execution: Malicious scripts can dynamically alter DOM content to present fraudulent login forms.
✅ Worm Propagation: Stored XSS can spread autonomously as users visit the infected page.
How to fix this issue?
Implement the following strategic mitigations immediately to eliminate the attack surface.
1. Output Encoding Implement strict context-aware output encoding (HTML, JavaScript, Attribute, CSS) before rendering user data.
2. Content Security Policy (CSP) Deploy a rigorous CSP header to restrict script execution exclusively to trusted domains.
3. Framework Defenses Utilize native UI framework protections (e.g., React DOM escaping) and avoid dangerouslySetInnerHTML.
Vulnerability Signature
// Example DOM-based XSS vulnerability
const user_input = new URLSearchParams(window.location.search).get('q');
// VULNERABLE: Direct insertion into innerHTML
document.getElementById('results').innerHTML = "Results for: " + user_input;
// EXPLOIT PAYLOAD: ?q=\<img src=x onerror=alert(document.cookie)\>