CVE-2026-28297 Overview
SolarWinds Observability Self-Hosted was found to be affected by a stored cross-site scripting (XSS) vulnerability, which when exploited, can lead to unintended script execution. This vulnerability allows attackers with high privileges on an adjacent network to inject malicious scripts that persist within the application, potentially compromising confidentiality and integrity of the affected system.
Critical Impact
Successful exploitation enables persistent script injection that executes in the context of other users' sessions, potentially leading to session hijacking, credential theft, or further compromise of the monitoring infrastructure.
Affected Products
- SolarWinds Observability Self-Hosted (versions prior to patched release)
Discovery Timeline
- 2026-03-26 - CVE CVE-2026-28297 published to NVD
- 2026-03-26 - Last updated in NVD database
Technical Details for CVE-2026-28297
Vulnerability Analysis
This stored cross-site scripting vulnerability (CWE-79) in SolarWinds Observability Self-Hosted allows an attacker with elevated privileges to inject malicious JavaScript code that becomes persistently stored within the application. Unlike reflected XSS attacks, stored XSS payloads execute every time a victim user accesses the affected page or component, making this vulnerability particularly dangerous in multi-user monitoring environments.
The attack requires access to an adjacent network, meaning the attacker must have some level of network proximity to the target system. While this limits the attack surface compared to internet-facing vulnerabilities, enterprise monitoring solutions like SolarWinds Observability are typically deployed in internal networks where adjacent network access may be more readily obtained by malicious insiders or compromised hosts.
The vulnerability impacts both confidentiality and integrity of the system. When exploited, malicious scripts can steal session tokens, capture user credentials, modify displayed data, or perform actions on behalf of authenticated users. Given that SolarWinds Observability is used to monitor critical infrastructure, compromise of administrator sessions could enable lateral movement or further attack escalation.
Root Cause
The root cause of this vulnerability is improper input validation and output encoding within the SolarWinds Observability Self-Hosted application. User-supplied input is stored without adequate sanitization and subsequently rendered to other users without proper encoding, allowing embedded script tags or JavaScript event handlers to execute in victims' browsers.
Attack Vector
The attack vector requires an attacker with high privileges and access to an adjacent network. The attacker injects a malicious script payload through a vulnerable input field or API endpoint within SolarWinds Observability Self-Hosted. The payload is stored in the application's database or persistent storage. When other users access the affected component, the stored script executes within their browser session, enabling the attacker to perform various malicious actions such as session hijacking, data exfiltration, or privilege escalation through captured credentials.
Detection Methods for CVE-2026-28297
Indicators of Compromise
- Unexpected JavaScript or HTML tags stored in application database fields or configuration entries
- Anomalous HTTP requests containing encoded script payloads targeting SolarWinds Observability endpoints
- User session anomalies such as authentication from unusual locations following XSS exploitation
- Browser console errors or security warnings related to cross-origin scripting in SolarWinds interfaces
Detection Strategies
- Implement web application firewall (WAF) rules to detect and block common XSS payload patterns in requests to SolarWinds Observability
- Monitor application logs for unusual input patterns containing <script>, javascript:, or encoded variants
- Deploy browser-based XSS protection mechanisms and Content Security Policy (CSP) headers to detect and mitigate client-side script execution
- Conduct regular security scans of the SolarWinds Observability deployment using vulnerability scanners capable of detecting stored XSS
Monitoring Recommendations
- Enable detailed logging for all user input operations within SolarWinds Observability Self-Hosted
- Configure SIEM alerts for patterns indicative of XSS payloads in application traffic
- Monitor for suspicious administrative actions following potential exploitation events
How to Mitigate CVE-2026-28297
Immediate Actions Required
- Review the SolarWinds Security Advisory for the latest patch information and apply available updates
- Audit existing stored data within SolarWinds Observability for potentially malicious content
- Restrict network access to the SolarWinds Observability deployment to limit adjacent network attack surface
- Implement Content Security Policy headers to reduce XSS impact if exploitation occurs before patching
Patch Information
SolarWinds has released a security update addressing this vulnerability. Administrators should consult the SolarWinds Orion Release Notes for detailed patch information and upgrade instructions. Apply the latest available version of SolarWinds Observability Self-Hosted to remediate this vulnerability.
Workarounds
- Implement strict input validation and output encoding at the web application firewall level to filter malicious payloads
- Restrict high-privilege account access to trusted administrators only, reducing the pool of potential attackers
- Deploy network segmentation to limit adjacent network access to the SolarWinds Observability infrastructure
- Enable browser security features and educate users about potential indicators of XSS exploitation
# Example: Implementing Content Security Policy header in web server configuration
# Apache httpd.conf or .htaccess
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"
# Nginx configuration
add_header Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'";
Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.


