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-2023-46673

CVE-2023-46673: Elastic Elasticsearch DOS Vulnerability

CVE-2023-46673 is a denial of service vulnerability in Elastic Elasticsearch caused by malformed scripts in Ingest Pipeline processing. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 4, 2026

CVE-2023-46673 Overview

CVE-2023-46673 is a Denial of Service vulnerability in Elastic Elasticsearch that allows attackers to crash an Elasticsearch node by submitting malformed scripts through the script processor of an Ingest Pipeline when calling the Simulate Pipeline API. This vulnerability affects the availability of Elasticsearch clusters and can be exploited remotely without authentication.

Critical Impact

Unauthenticated remote attackers can cause Elasticsearch nodes to crash, potentially disrupting data indexing, search capabilities, and overall cluster stability in production environments.

Affected Products

  • Elastic Elasticsearch (versions prior to 7.17.14)
  • Elastic Elasticsearch (versions 8.x prior to 8.10.3)

Discovery Timeline

  • 2023-11-22 - CVE-2023-46673 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-46673

Vulnerability Analysis

This vulnerability stems from improper handling of exceptions (CWE-755) in Elasticsearch's Ingest Pipeline script processor. When the Simulate Pipeline API processes specially crafted malformed scripts, the application fails to properly handle the resulting error condition, leading to a node crash.

The Ingest Pipeline feature in Elasticsearch allows users to pre-process documents before indexing. The script processor within these pipelines enables custom transformations using Painless scripting language. When malformed scripts are submitted through the Simulate Pipeline API—which is designed to test pipeline configurations without actually indexing data—the improper exception handling causes the entire Elasticsearch node to terminate unexpectedly.

This is particularly concerning because the Simulate Pipeline API is often accessible to users with lower privilege levels since it's intended for testing purposes, and the attack can be executed over the network without user interaction.

Root Cause

The root cause is improper exception handling (CWE-755: Improper Handling of Exceptional Conditions) within the script processor component. When parsing and executing malformed Painless scripts, the processor encounters an unexpected exception state that is not gracefully caught and handled, causing the node process to crash rather than returning an appropriate error response to the caller.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted HTTP requests to the Elasticsearch Simulate Pipeline API endpoint (/_ingest/pipeline/_simulate or /_ingest/pipeline/{id}/_simulate). The request would contain a malformed script within the pipeline definition's script processor configuration. When Elasticsearch attempts to parse or validate this malformed script during simulation, the improper exception handling causes the node to crash.

The attack requires network access to the Elasticsearch API endpoint but does not require authentication if the cluster is misconfigured with open access, which is unfortunately common in development and improperly secured production environments.

Detection Methods for CVE-2023-46673

Indicators of Compromise

  • Unexpected Elasticsearch node crashes or restarts without clear memory or resource exhaustion causes
  • Unusual volume of requests to /_ingest/pipeline/_simulate endpoints
  • Log entries showing unhandled exceptions in the script processor component immediately before node termination
  • Repeated cluster state changes due to nodes dropping and rejoining

Detection Strategies

  • Monitor Elasticsearch audit logs for requests to Simulate Pipeline API endpoints with unusual or malformed payload structures
  • Implement network-level detection rules for HTTP requests containing suspicious script processor configurations targeting ingest pipeline endpoints
  • Configure alerting on Elasticsearch node crashes that correlate with recent API activity on pipeline simulation endpoints
  • Deploy SentinelOne Singularity to detect anomalous process termination patterns and potential exploitation attempts

Monitoring Recommendations

  • Enable and centralize Elasticsearch slow logs and audit logs for correlation analysis
  • Configure cluster health monitoring to alert immediately on node departure events
  • Implement rate limiting on ingest pipeline simulation endpoints to slow potential exploitation attempts
  • Monitor for reconnaissance activity such as enumeration of existing pipelines via /_ingest/pipeline GET requests

How to Mitigate CVE-2023-46673

Immediate Actions Required

  • Upgrade Elasticsearch to version 7.17.14 or later for the 7.x branch
  • Upgrade Elasticsearch to version 8.10.3 or later for the 8.x branch
  • Restrict access to the Simulate Pipeline API to trusted users only using role-based access control
  • Ensure Elasticsearch is not exposed directly to the internet without proper authentication and network segmentation

Patch Information

Elastic has released security patches addressing this vulnerability in Elasticsearch versions 7.17.14 and 8.10.3. Organizations should review the Elastic Security Update ESA-2023-24 for detailed upgrade instructions and additional security resources available at the Elastic Community Security Resources page.

Workarounds

  • Implement network-level firewall rules to restrict access to the /_ingest/pipeline/_simulate endpoint to trusted IP addresses only
  • Configure Elasticsearch security features to require authentication for all API endpoints, particularly ingest pipeline operations
  • Deploy a reverse proxy in front of Elasticsearch to filter and validate requests before they reach the cluster
  • Use Elasticsearch's built-in role-based access control to remove manage_ingest_pipelines privileges from non-essential users
bash
# Example: Restrict access to ingest pipeline API using Elasticsearch role configuration
# Create a role that excludes dangerous ingest operations
PUT /_security/role/restricted_user
{
  "cluster": ["monitor"],
  "indices": [
    {
      "names": ["your-index-*"],
      "privileges": ["read", "write"]
    }
  ]
}
# Note: This role intentionally omits cluster privileges like
# "manage_ingest_pipelines" to prevent pipeline simulation access

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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.81%

  • 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-755
  • Vendor Resources
  • Elastic Security Update ESA-2023-24

  • Elastic Community Security Resources
  • Related CVEs
  • CVE-2024-43709: Elastic Elasticsearch DOS Vulnerability

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