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

CVE-2026-21728: Tempo DOS Memory Allocation Vulnerability

CVE-2026-21728 is a denial of service vulnerability in Tempo where queries with large limits cause excessive memory allocation, impacting service availability. This article covers the technical details, impact analysis, and mitigation.

Published: April 30, 2026

CVE-2026-21728 Overview

CVE-2026-21728 is a resource exhaustion vulnerability affecting Grafana Tempo, a high-scale distributed tracing backend. The vulnerability allows unauthenticated remote attackers to cause denial of service conditions by submitting queries with excessively large limit values, leading to significant memory allocations that can impact service availability.

This vulnerability is classified as CWE-400 (Uncontrolled Resource Consumption), where the application fails to properly limit the amount of resources that can be consumed by a single operation. The impact severity depends on the deployment strategy, with monolithic deployments being more susceptible to complete service disruption.

Critical Impact

Attackers can exhaust server memory through malicious queries, potentially causing service outages for distributed tracing infrastructure.

Affected Products

  • Grafana Tempo (versions not specified in advisory)

Discovery Timeline

  • 2026-04-24 - CVE-2026-21728 published to NVD
  • 2026-04-24 - Last updated in NVD database

Technical Details for CVE-2026-21728

Vulnerability Analysis

This denial of service vulnerability stems from improper resource management in Grafana Tempo's query processing logic. When a user submits a trace search query, Tempo allocates memory proportional to the specified result limit parameter. Without proper validation or bounds checking on this limit value, an attacker can specify arbitrarily large limits that cause the service to allocate excessive amounts of memory.

The vulnerability is particularly concerning in environments where Tempo is deployed as a monolithic service, as the memory exhaustion can bring down the entire tracing infrastructure. In microservices or distributed deployments, the impact may be limited to specific query components, though cascading failures remain possible.

Root Cause

The root cause is the absence of a maximum result limit constraint in Tempo's search configuration. The search query handler accepts user-supplied limit values without enforcing an upper boundary, allowing memory allocation requests that exceed available system resources. This represents a classic uncontrolled resource consumption pattern where the application trusts user input to define resource allocation parameters.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker sends specially crafted trace search queries to the Tempo API endpoint with extremely large limit values. Each malicious query forces the server to allocate memory for the requested number of results, even before any actual trace data is retrieved.

The attack is straightforward to execute and requires minimal technical sophistication. Since Tempo is typically exposed for trace ingestion and querying, the attack surface is often accessible from within the network or even externally in some deployments.

The vulnerability manifests in the query processing pipeline where result limits are applied. When processing search requests, the system allocates memory structures to hold the requested number of results. Without a configured max_result_limit, attackers can specify values like 2^32 or higher, causing memory exhaustion. For technical implementation details, refer to the Grafana Security Advisory CVE-2026-21728.

Detection Methods for CVE-2026-21728

Indicators of Compromise

  • Unusual spikes in memory consumption on Tempo service instances
  • Tempo service crashes or out-of-memory (OOM) kills in container logs
  • High volume of search queries with abnormally large limit parameters
  • Service unavailability or degraded performance in distributed tracing infrastructure

Detection Strategies

  • Monitor Tempo query logs for search requests with limit values exceeding normal operational thresholds
  • Implement alerting on memory utilization metrics for Tempo pods/containers approaching resource limits
  • Review application logs for OOM killer events or memory allocation failures
  • Deploy network-level monitoring to identify unusual query patterns against Tempo endpoints

Monitoring Recommendations

  • Configure Prometheus alerts for Tempo memory usage exceeding 80% of allocated resources
  • Set up log aggregation rules to flag queries with limit parameters above 262144
  • Implement request rate limiting at the API gateway level for Tempo search endpoints
  • Enable distributed tracing observability for the tracing infrastructure itself to identify anomalous query patterns

How to Mitigate CVE-2026-21728

Immediate Actions Required

  • Configure max_result_limit in Tempo's search configuration immediately
  • Set the recommended value of 262144 (2^18) or lower based on operational requirements
  • Review and apply resource limits (memory limits) on Tempo containers/pods
  • Consider implementing query timeout configurations to prevent long-running malicious queries

Patch Information

The recommended mitigation involves configuration changes rather than a software patch. Administrators should update their Tempo configuration to include the max_result_limit parameter in the search configuration block. This setting enforces an upper bound on the number of results that can be requested in a single query, preventing memory exhaustion attacks.

For detailed guidance, consult the Grafana Security Advisory CVE-2026-21728.

Workarounds

  • Set max_result_limit to 262144 (2^18) in the search configuration as recommended by Grafana
  • Deploy Tempo in a distributed architecture to isolate query processing from other components
  • Implement Kubernetes resource limits to prevent a single pod from exhausting node resources
  • Use API gateway rate limiting to throttle search query frequency from individual clients
bash
# Example Tempo configuration with max_result_limit
# Add to your tempo.yaml or tempo-config ConfigMap

search:
  max_result_limit: 262144  # Recommended limit of 2^18

# For Kubernetes deployments, ensure resource limits are set:
# resources:
#   limits:
#     memory: "4Gi"
#   requests:
#     memory: "2Gi"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • Grafana Security Advisory CVE-2026-21728
  • 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