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

CVE-2026-23833: ESPHome API Protobuf DoS Vulnerability

CVE-2026-23833 is a denial-of-service flaw in ESPHome's API component affecting versions 2025.9.0-2025.12.6. An integer overflow in the protobuf decoder allows unauthenticated attacks. This article covers technical details, impact, and mitigation.

Published: January 23, 2026

CVE-2026-23833 Overview

ESPHome, a popular system for controlling microcontrollers remotely through Home Automation systems, contains an integer overflow vulnerability in its API component's protobuf decoder. This flaw exists in versions 2025.9.0 through 2025.12.6 and enables denial-of-service attacks when API encryption is not enabled. The vulnerability stems from an improper bounds check in components/api/proto.cpp that can be bypassed through arithmetic overflow.

Critical Impact

Unauthenticated attackers can crash ESPHome devices across all supported platforms (ESP32, ESP8266, RP2040, LibreTiny) by sending maliciously crafted protobuf messages that trigger invalid memory reads.

Affected Products

  • ESPHome versions 2025.9.0 through 2025.12.6
  • ESP32, ESP8266, RP2040, and LibreTiny device platforms
  • Devices with plaintext API protocol (no noise encryption enabled)

Discovery Timeline

  • 2026-01-19 - CVE CVE-2026-23833 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2026-23833

Vulnerability Analysis

This vulnerability is classified as CWE-190 (Integer Overflow or Wraparound). The core issue lies in the protobuf decoder implementation within the ESPHome API component. When processing incoming protobuf messages, the decoder performs a bounds check using the expression ptr + field_length > end. However, this check is susceptible to integer overflow when a malicious client supplies an excessively large field_length value.

When the field_length is large enough, adding it to the current pointer value causes arithmetic overflow, wrapping the result to a small value. This corrupted value then passes the bounds check, allowing the decoder to proceed with reading memory far beyond the legitimate buffer boundaries. The resulting out-of-bounds memory access causes the device to crash.

The attack surface is particularly concerning because when using the plaintext API protocol (the default configuration), this attack can be executed without any authentication. Devices with noise encryption enabled require knowledge of the encryption key to exploit this vulnerability.

Root Cause

The root cause is an unsafe integer arithmetic operation in the protobuf decoder's bounds validation logic located in components/api/proto.cpp. The expression ptr + field_length > end does not account for the possibility of integer overflow when field_length contains a maliciously large value. This allows the sum to wrap around, producing a smaller value that incorrectly passes the bounds check and permits unauthorized memory access.

Attack Vector

The attack is network-based and can be performed remotely. An attacker with network access to an ESPHome device's API port can craft a malicious protobuf message containing an oversized field_length field. When the vulnerable device processes this message:

  1. The attacker sends a crafted protobuf message to the device's API endpoint
  2. The decoder reads the malicious field_length value
  3. The bounds check calculation (ptr + field_length) overflows to a small value
  4. The check passes incorrectly, allowing the decoder to continue
  5. The device attempts to read memory at invalid addresses
  6. The invalid memory access causes the device to crash, resulting in denial of service

When the plaintext API protocol is in use, this entire attack sequence requires no authentication. Devices protected by noise encryption would require the attacker to possess the encryption key.

Detection Methods for CVE-2026-23833

Indicators of Compromise

  • Unexpected device reboots or crashes without apparent cause
  • Network traffic containing abnormally large protobuf field length values targeting ESPHome API ports
  • Repeated connection attempts to ESPHome devices from unknown IP addresses
  • Device logs showing memory access violations or crash dumps prior to reboot

Detection Strategies

  • Monitor network traffic for malformed protobuf messages with unusually large length fields targeting IoT devices
  • Implement intrusion detection rules to identify potential overflow attempts in protobuf-encoded traffic
  • Track device uptime metrics and alert on unexpected restarts of ESPHome devices
  • Review ESPHome device logs for memory-related errors or crash indicators

Monitoring Recommendations

  • Enable logging on ESPHome devices to capture crash events and connection attempts
  • Deploy network monitoring to detect anomalous traffic patterns targeting IoT device ports
  • Implement alerting for devices that go offline unexpectedly or experience repeated crashes
  • Monitor for scanning activity targeting common ESPHome API ports across your network

How to Mitigate CVE-2026-23833

Immediate Actions Required

  • Upgrade all ESPHome devices to version 2025.12.7 or later immediately
  • Enable API encryption with noise using a unique key per device
  • Review the ESPHome Security Best Practices documentation
  • Restrict network access to ESPHome devices to trusted networks and IP addresses only

Patch Information

ESPHome has released version 2025.12.7 which addresses this integer overflow vulnerability. The fix is documented in Pull Request #13306, and the specific patch can be reviewed in commit 69d7b6e. Users should update their ESPHome installation and reflash all affected devices with the patched firmware. For complete technical details, refer to the GitHub Security Advisory GHSA-4h3h-63v6-88qx.

Workarounds

  • Enable noise encryption on all ESPHome devices to require authentication for API access
  • Isolate ESPHome devices on a separate network segment with restricted access
  • Implement firewall rules to limit API port access to known Home Automation system IP addresses only
  • Disable the native API component if not required and use alternative communication methods
yaml
# ESPHome configuration with encryption enabled
api:
  encryption:
    key: "your-unique-32-byte-base64-encoded-key"
  # Restrict to specific IP ranges if possible
  services: []

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechEsphome

  • SeverityLOW

  • CVSS Score1.7

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-190
  • Technical References
  • ESPHome Security Best Practices

  • ESPHome Commit 69d7b6e

  • ESPHome Pull Request #13306

  • GitHub Security Advisory GHSA-4h3h-63v6-88qx
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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