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
    • 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-2024-37280

CVE-2024-37280: Elastic Elasticsearch DOS Vulnerability

CVE-2024-37280 is a denial of service flaw in Elastic Elasticsearch caused by passthrough field mappings during document ingestion. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2024-37280 Overview

A denial of service vulnerability was discovered in Elasticsearch affecting document ingestion when an index template contains a dynamic field mapping of "passthrough" type. Under certain circumstances, ingesting documents in this index causes a StackOverflow exception to be thrown, ultimately leading to a Denial of Service condition. It is important to note that passthrough fields is an experimental feature in Elasticsearch.

Critical Impact

Attackers with high privileges can trigger a StackOverflow exception during document ingestion, causing Elasticsearch nodes to become unresponsive and disrupting search and analytics operations.

Affected Products

  • Elastic Elasticsearch (versions prior to 8.14.0)

Discovery Timeline

  • 2024-06-13 - CVE-2024-37280 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-37280

Vulnerability Analysis

This vulnerability is classified under CWE-122 (Heap-based Buffer Overflow) and CWE-787 (Out-of-bounds Write), though the primary manifestation is a stack overflow condition. The flaw exists in Elasticsearch's document ingestion pipeline when processing index templates that utilize the experimental "passthrough" dynamic field mapping type.

When documents are ingested into an index configured with passthrough field mappings, specific document structures can trigger recursive processing that exhausts the available stack space. This results in a StackOverflowException being thrown, which crashes the ingestion process and can render Elasticsearch nodes unresponsive.

The attack requires network access and high privileges (administrative access to create or modify index templates), which limits the attack surface. However, in multi-tenant environments or systems where template management is delegated, this vulnerability poses a significant availability risk.

Root Cause

The root cause lies in improper handling of recursive field mappings within the passthrough type implementation. When certain nested document structures are processed against a passthrough-type dynamic field mapping, the recursion depth exceeds the JVM's stack capacity, leading to a stack overflow condition. This is an implementation flaw in an experimental feature that did not properly bound recursion depth or implement iterative processing for deeply nested structures.

Attack Vector

The attack vector is network-based and requires high privileges. An attacker must have sufficient permissions to either create index templates with passthrough field mappings or ingest documents into an existing index with such mappings. The attack scenario involves:

  1. Creating or identifying an index template with a "passthrough" type dynamic field mapping
  2. Crafting a document with a structure that triggers deep recursion during field processing
  3. Ingesting the malicious document to trigger the StackOverflow exception
  4. Repeating the attack to sustain denial of service conditions

The vulnerability exploits the experimental passthrough field mapping feature. When a document containing deeply nested or self-referential structures is ingested, the field mapping processor enters an unbounded recursive loop, ultimately exhausting the JVM stack and crashing the ingestion thread. For detailed technical information, see the Elastic Security Update Discussion.

Detection Methods for CVE-2024-37280

Indicators of Compromise

  • Elasticsearch nodes experiencing unexpected StackOverflowException errors in logs
  • Repeated crashes or restarts of Elasticsearch ingestion processes
  • Index templates containing "passthrough" type dynamic field mappings combined with unusual document ingestion patterns
  • JVM crash dumps indicating stack exhaustion during document processing

Detection Strategies

  • Monitor Elasticsearch logs for StackOverflowException entries, particularly those occurring during document ingestion operations
  • Audit index templates for the use of experimental "passthrough" type field mappings
  • Implement alerting on Elasticsearch node availability and ingestion pipeline health metrics
  • Review recent template changes for introduction of passthrough field mappings

Monitoring Recommendations

  • Enable verbose logging for Elasticsearch ingestion pipelines to capture early warning signs
  • Configure JVM monitoring to track stack usage and thread health
  • Set up cluster health monitoring with alerts for node unavailability
  • Implement rate limiting and anomaly detection on document ingestion endpoints

How to Mitigate CVE-2024-37280

Immediate Actions Required

  • Upgrade Elasticsearch to version 8.14.0 or later where this vulnerability is patched
  • Audit existing index templates and remove or disable passthrough type field mappings until patching is complete
  • Restrict permissions for index template creation and modification to trusted administrators only
  • Monitor ingestion pipelines for signs of exploitation attempts

Patch Information

Elastic has released a security update addressing this vulnerability in Elasticsearch version 8.14.0. Organizations should prioritize upgrading to this version or later. The security advisory is available at the Elastic Security Update Discussion. Additional vendor information is available from the NetApp Security Advisory.

Workarounds

  • Avoid using the experimental "passthrough" type dynamic field mapping until the cluster is patched
  • Implement input validation on documents before ingestion to detect potentially malicious nested structures
  • Restrict index template management permissions using Elasticsearch's role-based access control
  • Consider deploying Elasticsearch behind a web application firewall with rules to detect anomalous document structures
bash
# Configuration example
# Audit existing index templates for passthrough field mappings
curl -X GET "localhost:9200/_index_template?pretty" | grep -i passthrough

# Review and update role-based access control to restrict template management
# Example: Create a role that excludes template management permissions
curl -X PUT "localhost:9200/_security/role/restricted_user" -H 'Content-Type: application/json' -d'
{
  "cluster": ["monitor"],
  "indices": [
    {
      "names": ["*"],
      "privileges": ["read", "write"]
    }
  ]
}'

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechElastic Elasticsearch

  • SeverityMEDIUM

  • CVSS Score4.9

  • EPSS Probability0.34%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-122

  • CWE-787
  • Technical References
  • NetApp Security Advisory
  • Vendor Resources
  • Elastic Security Update Discussion
  • Related CVEs
  • CVE-2024-43709: Elastic Elasticsearch DOS Vulnerability

  • CVE-2023-46673: Elastic Elasticsearch DOS Vulnerability

  • CVE-2024-23444: Elasticsearch Information Disclosure Flaw

  • CVE-2023-46674: Elastic Elasticsearch Privilege Escalation
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