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

CVE-2026-41502: BACnet Stack Buffer Overflow Vulnerability

CVE-2026-41502 is a buffer overflow flaw in BACnet Stack that enables remote attackers to trigger crashes via crafted RPM requests. This article covers the technical details, affected versions, and mitigation steps.

Published: April 30, 2026

CVE-2026-41502 Overview

CVE-2026-41502 is an off-by-one out-of-bounds read vulnerability in the BACnet Stack open source protocol library for embedded systems. The flaw exists in the ReadPropertyMultiple (RPM) service decoder, specifically in the rpm_decode_object_id() function within src/bacnet/rpm.c. Unauthenticated remote attackers can exploit this vulnerability by sending a crafted RPM request with a truncated object identifier, allowing them to read one byte past an allocated buffer boundary.

Critical Impact

Successful exploitation can cause denial of service through crashes on embedded BACnet devices, potentially disrupting building automation systems, HVAC controls, and other industrial control systems relying on BACnet protocol communication.

Affected Products

  • BACnet Stack versions prior to 1.4.3
  • BACnet Stack version 1.5.0-rc1
  • BACnet Stack version 1.5.0-rc2
  • BACnet Stack version 1.5.0-rc3

Discovery Timeline

  • April 24, 2026 - CVE-2026-41502 published to NVD
  • April 28, 2026 - Last updated in NVD database

Technical Details for CVE-2026-41502

Vulnerability Analysis

The vulnerability stems from an off-by-one boundary checking error in the rpm_decode_object_id() function. The function validates that apdu_len < 5 before processing input, but then proceeds to access all 6 byte positions (indices 0-5). Specifically, the decoder consumes 1 byte for the context tag, 4 bytes for the object ID, and then reads apdu[5] for the opening tag check. When a 5-byte input is supplied, it passes the length check but causes the function to read one byte beyond the allocated buffer boundary.

This vulnerability affects any deployment that enables the ReadPropertyMultiple confirmed service handler, which is enabled by default in the reference server implementation. Given that BACnet is widely used in building automation and industrial control systems, this vulnerability presents significant risk to critical infrastructure.

Root Cause

The root cause is an improper input validation error in the boundary checking logic. The length validation check (apdu_len < 5) is insufficient because the function actually requires 6 bytes of data to complete processing. This classic off-by-one error results in the code accessing memory beyond the intended buffer bounds when processing a crafted 5-byte payload.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker needs to:

  1. Identify a target BACnet device running a vulnerable version of bacnet-stack
  2. Craft a malicious ReadPropertyMultiple request with a truncated 5-byte object identifier
  3. Send the crafted request to the BACnet UDP port (typically 47808)
  4. The vulnerable decoder will attempt to read past the buffer boundary, causing undefined behavior

The attack does not require any user interaction or special privileges. Since BACnet is commonly exposed on building automation networks, devices may be accessible from internal networks or, in misconfigured environments, directly from the internet.

The vulnerability is triggered when the RPM service handler processes the malformed request. The one-byte out-of-bounds read can cause crashes on embedded devices with strict memory protection, leading to denial of service. On systems without memory protection, the behavior is undefined and may leak sensitive memory contents.

Detection Methods for CVE-2026-41502

Indicators of Compromise

  • Unexpected crashes or restarts of BACnet-enabled devices
  • Malformed ReadPropertyMultiple requests with truncated object identifiers (exactly 5 bytes in the APDU)
  • Network traffic to UDP port 47808 containing abnormally short RPM service requests
  • Core dumps or error logs indicating segmentation faults in rpm_decode_object_id() or related functions

Detection Strategies

  • Deploy network intrusion detection signatures to identify malformed BACnet ReadPropertyMultiple requests with truncated payloads
  • Monitor BACnet device availability and implement alerting for unexpected device restarts or communication failures
  • Implement deep packet inspection for BACnet/IP traffic to validate proper APDU lengths for RPM service requests
  • Review device logs for memory access violations or crash reports related to RPM service handling

Monitoring Recommendations

  • Enable verbose logging on BACnet devices where supported to capture service request details
  • Implement network segmentation monitoring to detect unauthorized access attempts to BACnet networks
  • Deploy honeypot BACnet devices to detect reconnaissance and exploitation attempts
  • Establish baseline network behavior for BACnet traffic volumes and patterns to identify anomalies

How to Mitigate CVE-2026-41502

Immediate Actions Required

  • Upgrade BACnet Stack to version 1.4.3 or later immediately
  • If running release candidate versions 1.5.0-rc1, 1.5.0-rc2, or 1.5.0-rc3, update to a patched version
  • Implement network segmentation to isolate BACnet devices from untrusted networks
  • Apply firewall rules to restrict access to BACnet UDP port 47808 to authorized systems only

Patch Information

The vulnerability is fixed in BACnet Stack version 1.4.3. Organizations should update to this version or later to remediate the vulnerability. For detailed patch information and release notes, see the GitHub Security Advisory GHSA-7545-3fpx-4xw3.

Workarounds

  • Disable the ReadPropertyMultiple confirmed service handler if not required for operations (note: this may impact legitimate functionality)
  • Implement network-level access controls to limit which hosts can send BACnet requests to vulnerable devices
  • Deploy an application-layer firewall or proxy that can validate BACnet message structure before forwarding to backend devices
  • Consider physical network isolation for critical BACnet infrastructure until patching can be completed
bash
# Example: Restrict BACnet UDP access using iptables
# Allow BACnet traffic only from authorized building management systems
iptables -A INPUT -p udp --dport 47808 -s 192.168.10.0/24 -j ACCEPT
iptables -A INPUT -p udp --dport 47808 -j DROP

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechBacnetstack

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.25%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/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
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41503: BACnet Stack Buffer Overflow Vulnerability

  • CVE-2025-66624: BACnet Stack DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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