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-28379

CVE-2026-28379: Grafana Live DOS Vulnerability

CVE-2026-28379 is a race condition denial of service flaw in Grafana Live that allows authenticated viewers to crash the server through concurrent requests. This article covers technical details, impact, and mitigation.

Published: May 14, 2026

CVE-2026-28379 Overview

CVE-2026-28379 is a race condition vulnerability in Grafana Live that authenticated users can exploit to crash the Grafana server. The flaw resides in Grafana's real-time streaming component and is triggered when concurrent requests cause a fatal map access error in the underlying Go runtime. Any authenticated account, including low-privilege Viewer roles, can submit the malicious request pattern. Successful exploitation results in complete service unavailability and requires a manual restart of the Grafana server to restore monitoring functionality.

Critical Impact

Authenticated Viewer-role users can crash the Grafana server remotely with concurrent requests, taking observability services offline until manually restarted.

Affected Products

  • Grafana (Grafana Live component)
  • See the Grafana Security Advisory CVE-2026-28379 for the affected version ranges

Discovery Timeline

  • 2026-05-13 - CVE-2026-28379 published to the National Vulnerability Database (NVD)
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-28379

Vulnerability Analysis

Grafana Live is the websocket-based component that streams real-time data to dashboards and panels. The vulnerability is a race condition in concurrent map access within this component. When multiple requests arrive simultaneously, unsynchronized read and write operations on a shared map trigger a fatal runtime error in Go. Go's runtime treats concurrent map writes as unrecoverable and terminates the process. The result is a full denial-of-service condition affecting all dashboards, alerts, and data sources served by the affected instance.

Root Cause

The root cause is missing synchronization on a shared in-memory map used by Grafana Live to track session or channel state. Without a mutex or sync.Map, parallel goroutines handling concurrent client requests race on the same map structure. Go's runtime detects the unsafe access pattern and aborts the process with a fatal error rather than continuing in an undefined state. This is a classic [CWE-362] concurrent execution flaw escalating into a [CWE-400] uncontrolled resource consumption outcome.

Attack Vector

The attack vector is network-based and requires only a valid authenticated session with the lowest available role, Viewer. An attacker scripts a small number of concurrent requests to a Grafana Live endpoint within the same process window. No user interaction is needed beyond initial authentication. Because Viewer-level credentials are often issued broadly across organizations, the practical exploitation barrier is low. The vulnerability does not expose data confidentiality or integrity, but the availability impact is high. Refer to the Grafana Security Advisory CVE-2026-28379 for endpoint-specific technical details.

Detection Methods for CVE-2026-28379

Indicators of Compromise

  • Grafana process termination accompanied by fatal error: concurrent map read and map write or concurrent map writes messages in service logs
  • Multiple near-simultaneous requests to Grafana Live websocket or HTTP streaming endpoints from a single authenticated session
  • Unexpected Grafana service restarts logged by the init system (systemd, container orchestrator) without administrator action

Detection Strategies

  • Monitor Grafana stderr and journal output for Go runtime fatal errors referencing map access
  • Alert on Grafana process exit codes inconsistent with normal shutdown sequences
  • Baseline normal request rates to Live endpoints and flag bursts of concurrent connections from individual user tokens

Monitoring Recommendations

  • Forward Grafana application logs and host service-manager events to a centralized SIEM for correlation
  • Track authenticated API and websocket request counts per user identifier to surface abusive Viewer accounts
  • Configure uptime monitoring on Grafana's /api/health endpoint to detect crash-and-restart cycles

How to Mitigate CVE-2026-28379

Immediate Actions Required

  • Upgrade Grafana to the fixed version identified in the Grafana Security Advisory CVE-2026-28379
  • Audit Viewer-role accounts and revoke unused or shared credentials that could be abused for denial-of-service
  • Place Grafana behind a reverse proxy with per-user rate limiting on Live endpoints until patching is complete

Patch Information

Grafana Labs has published remediation guidance and fixed versions in the Grafana Security Advisory CVE-2026-28379. Administrators should apply the vendor patch as the primary mitigation. Self-hosted deployments must update binaries or container images, while Grafana Cloud tenants receive fixes through the managed service.

Workarounds

  • Disable Grafana Live in grafana.ini by setting [live] max_connections = 0 if streaming features are not in use
  • Restrict access to Grafana Live endpoints at the network layer to trusted client ranges only
  • Enforce stricter authentication policies and reduce the number of Viewer accounts pending the upgrade
bash
# Configuration example: disable Grafana Live as a temporary workaround
# /etc/grafana/grafana.ini
[live]
max_connections = 0

# Restart Grafana to apply the change
sudo systemctl restart grafana-server

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGrafana

  • SeverityMEDIUM

  • CVSS Score6.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Grafana Security Advisory CVE-2026-28379
  • Related CVEs
  • CVE-2026-28383: Grafana Plugin DoS Vulnerability

  • CVE-2026-28376: Grafana Live DOS Vulnerability

  • CVE-2026-27880: Grafana DOS Vulnerability

  • CVE-2026-27879: Grafana DOS 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