Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-27099

CVE-2026-27099: Jenkins Stored XSS Vulnerability

CVE-2026-27099 is a stored cross-site scripting flaw in Jenkins affecting versions 2.483-2.550 and LTS 2.492.1-2.541.1. Attackers with specific permissions can exploit this. This article covers technical details, affected versions, and fixes.

Published: February 20, 2026

CVE-2026-27099 Overview

CVE-2026-27099 is a stored Cross-Site Scripting (XSS) vulnerability affecting Jenkins automation server. The vulnerability exists because Jenkins does not properly escape user-provided descriptions in the "Mark temporarily offline" offline cause feature. Attackers with Agent/Configure or Agent/Disconnect permission can inject malicious scripts that persist in the application and execute in the context of other users' sessions when viewing the affected agent status.

Critical Impact

Authenticated attackers can exploit this stored XSS vulnerability to execute arbitrary JavaScript in victims' browsers, potentially leading to session hijacking, credential theft, or unauthorized actions within the Jenkins environment.

Affected Products

  • Jenkins 2.483 through 2.550 (both inclusive)
  • Jenkins LTS 2.492.1 through 2.541.1 (both inclusive)

Discovery Timeline

  • 2026-02-18 - CVE-2026-27099 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-27099

Vulnerability Analysis

This stored XSS vulnerability (CWE-79) stems from insufficient input sanitization in Jenkins' agent management functionality. When an administrator or user with appropriate permissions marks an agent as temporarily offline, they can provide a description explaining the reason for the offline status. Jenkins fails to properly escape HTML and JavaScript content within this description field before rendering it to other users.

The vulnerability is particularly dangerous because the malicious payload persists in the Jenkins environment. Any user who subsequently views the agent status page will have the injected script executed in their browser context. This could enable attackers to steal session cookies, perform actions on behalf of authenticated users, or exfiltrate sensitive data from the Jenkins instance.

Root Cause

The root cause is improper output encoding of user-controlled input. When the offline cause description is displayed in the Jenkins web interface, the application fails to apply appropriate HTML entity encoding or JavaScript escaping. This allows raw HTML and script tags to be interpreted as executable code by the browser rather than being displayed as plain text.

Attack Vector

The attack requires network access and low-privilege authentication to the Jenkins instance. An attacker must possess either Agent/Configure or Agent/Disconnect permission to exploit this vulnerability. The attack flow involves:

  1. The attacker authenticates to Jenkins with an account having Agent/Configure or Agent/Disconnect permissions
  2. The attacker navigates to an agent configuration and selects "Mark temporarily offline"
  3. In the offline cause description field, the attacker injects malicious JavaScript payload
  4. The payload is stored in Jenkins and rendered without sanitization
  5. When other users (including administrators) view the agent status, the malicious script executes in their browser session

The exploitation does require user interaction—a victim must view the page containing the malicious payload. However, since agent status pages are commonly accessed during routine administration, the likelihood of exploitation is elevated.

Detection Methods for CVE-2026-27099

Indicators of Compromise

  • Unusual script tags or JavaScript code present in agent offline cause descriptions
  • Unexpected HTML entities or encoded payloads in agent configuration fields
  • Browser console errors related to blocked scripts or Content Security Policy violations on agent pages
  • Audit log entries showing frequent modifications to agent offline status by low-privilege users

Detection Strategies

  • Review Jenkins audit logs for suspicious modifications to agent offline causes, particularly those containing <script>, javascript:, or event handler attributes like onerror or onload
  • Implement Web Application Firewall (WAF) rules to detect and block common XSS payloads targeting Jenkins endpoints
  • Configure Content Security Policy headers to mitigate the impact of successful XSS exploitation
  • Use automated security scanning tools to identify stored XSS payloads within Jenkins configuration data

Monitoring Recommendations

  • Enable comprehensive audit logging in Jenkins and forward logs to a SIEM for analysis
  • Monitor for unusual user session behavior that may indicate session hijacking resulting from XSS exploitation
  • Set up alerts for modifications to agent configurations by users who don't typically perform such actions
  • Periodically scan Jenkins agent configurations for suspicious content patterns

How to Mitigate CVE-2026-27099

Immediate Actions Required

  • Upgrade Jenkins to a version beyond 2.550 or LTS version beyond 2.541.1 that contains the security fix
  • Review all existing agent offline cause descriptions for potentially malicious content
  • Restrict Agent/Configure and Agent/Disconnect permissions to trusted users only
  • Implement Content Security Policy headers as a defense-in-depth measure

Patch Information

Jenkins has released security updates addressing this vulnerability. Organizations should upgrade to patched versions as documented in the Jenkins Security Advisory #SECURITY-3669. The patch implements proper HTML escaping for the offline cause description field to prevent script injection.

Workarounds

  • Limit Agent/Configure and Agent/Disconnect permissions to highly trusted users only until patching is complete
  • Implement strict Content Security Policy headers to prevent inline script execution
  • Deploy a Web Application Firewall configured to filter XSS payloads targeting Jenkins
  • Consider temporarily disabling the "Mark temporarily offline" feature through plugin restrictions if feasible
bash
# Example: Review Jenkins permissions to identify users with Agent/Configure or Agent/Disconnect
# Access Jenkins > Manage Jenkins > Configure Global Security > Authorization
# Review users and groups with Agent-related permissions and restrict as necessary

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechJenkins

  • SeverityHIGH

  • CVSS Score8.0

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-79
  • Technical References
  • Jenkins Security Advisory #SECURITY-3669
  • Related CVEs
  • CVE-2025-53658: Jenkins Applitools Eyes XSS Vulnerability

  • CVE-2023-27905: Jenkins Update-center2 XSS Vulnerability

  • CVE-2023-27898: Jenkins Stored XSS Vulnerability

  • CVE-2023-39151: Jenkins Stored XSS 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