The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-41200

CVE-2026-41200: STIG Manager XSS Vulnerability

CVE-2026-41200 is a reflected Cross-Site Scripting flaw in STIG Manager affecting versions 1.5.10 through 1.6.7. Attackers can execute arbitrary JavaScript to access user sessions. This article covers technical details, affected versions, impact, and mitigation steps.

Published: April 23, 2026

CVE-2026-41200 Overview

CVE-2026-41200 is a reflected Cross-Site Scripting (XSS) vulnerability in STIG Manager, an API and web client used for managing Security Technical Implementation Guides (STIG) assessments of Information Systems. The vulnerability exists in the OIDC authentication error handling code within src/init.js and public/reauth.html. During the OIDC redirect flow, the error and error_description query parameters returned by the OIDC provider are written directly to the DOM via innerHTML without proper HTML escaping, allowing attackers to inject and execute arbitrary JavaScript.

Critical Impact

An attacker who crafts a malicious redirect URL and convinces a user to follow it can execute arbitrary JavaScript in the application's origin context. When the targeted user has an active STIG Manager session running in another browser tab, injected code can communicate with the SharedWorker managing the active access token, enabling authenticated API requests on behalf of the victim including reading and modifying collection data.

Affected Products

  • STIG Manager versions 1.5.10 through 1.6.7

Discovery Timeline

  • 2026-04-23 - CVE CVE-2026-41200 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-41200

Vulnerability Analysis

This reflected XSS vulnerability (CWE-79) occurs in the OIDC authentication error handling pathway of STIG Manager. The application's front-end code in src/init.js and public/reauth.html processes error responses from the OIDC identity provider during the authentication redirect flow. The vulnerability arises because the error and error_description query parameters are directly inserted into the page DOM using the innerHTML property without any HTML encoding or sanitization.

This implementation allows an attacker to craft a malicious URL containing JavaScript payloads in these parameters. When a victim clicks the malicious link, the browser parses the injected content as legitimate HTML/JavaScript and executes it within the application's origin context.

Root Cause

The root cause is improper input validation and output encoding in the OIDC error handling code. The application trusts and directly renders user-controllable input (query parameters) without sanitization. Using innerHTML to insert untrusted data creates a direct pathway for script injection. The vulnerability is compounded by the application's architecture, which uses a SharedWorker to manage authentication tokens across browser tabs, making the impact of successful exploitation significantly more severe.

Attack Vector

The attack requires network access and user interaction. An attacker must craft a malicious URL that appears to be a legitimate OIDC redirect from the identity provider but includes XSS payloads in the error or error_description query parameters. Social engineering techniques such as phishing emails or malicious links embedded in forums or documents can be used to trick users into clicking the crafted URL.

Once the victim navigates to the malicious URL, the injected JavaScript executes in the context of the STIG Manager application origin. If the victim has an active authenticated session in another browser tab, the malicious script can interact with the SharedWorker managing the access token, enabling the attacker to make authenticated API calls. This allows reading, modifying, or deleting STIG assessment data on behalf of the victim.

The vulnerability mechanism involves unsafe DOM manipulation where OIDC error parameters from the URL query string are extracted and passed directly to innerHTML for rendering error messages to the user. Proper remediation requires using safe DOM methods such as textContent or implementing HTML entity encoding before insertion.

Detection Methods for CVE-2026-41200

Indicators of Compromise

  • Unusual URL patterns containing HTML or JavaScript code in the error or error_description query parameters of OIDC callback endpoints
  • Web server access logs showing requests to /reauth.html or authentication endpoints with encoded script tags in query strings
  • Client-side monitoring detecting unexpected DOM modifications or script execution following OIDC redirects

Detection Strategies

  • Implement Content Security Policy (CSP) headers to restrict inline script execution and report violations
  • Deploy web application firewall (WAF) rules to detect and block reflected XSS payloads in query parameters
  • Enable browser-based XSS auditors and monitor for triggered alerts in security logging infrastructure

Monitoring Recommendations

  • Monitor authentication flow logs for anomalous error responses containing suspicious characters or encoded payloads
  • Implement anomaly detection for API requests originating from sessions where OIDC errors were recently processed
  • Review access logs for patterns indicating exploitation attempts against authentication endpoints

How to Mitigate CVE-2026-41200

Immediate Actions Required

  • Upgrade STIG Manager to version 1.6.8 or later immediately to apply the security patch
  • Review access logs for any evidence of exploitation attempts targeting the OIDC error handling endpoints
  • Notify users to be cautious of unsolicited links purporting to be STIG Manager authentication flows
  • Ensure proper Content Security Policy headers are configured to mitigate impact of potential XSS vulnerabilities

Patch Information

The vulnerability is patched in STIG Manager version 1.6.8. Organizations should upgrade from any affected version (1.5.10 through 1.6.7) to version 1.6.8 or later. For detailed patch information and release notes, refer to the GitHub Security Advisory.

Workarounds

  • There is no workaround short of upgrading to the patched version
  • Deployments behind a web application firewall (WAF) that filters reflected XSS payloads in query parameters may have partial mitigation, but this is not a substitute for patching
  • Implement strict Content Security Policy headers as a defense-in-depth measure while planning the upgrade
bash
# Example CSP header configuration for partial mitigation (not a substitute for patching)
# Add to your reverse proxy or web server configuration
Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none'; base-uri 'self';

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechStig Manager

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English