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

CVE-2026-41503: BACnet Stack Buffer Overflow Vulnerability

CVE-2026-41503 is a buffer overflow flaw in BACnet Stack that allows remote attackers to read past allocated buffer boundaries, causing crashes on embedded devices. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-41503 Overview

CVE-2026-41503 is an out-of-bounds read vulnerability affecting BACnet Stack, an open source BACnet protocol stack C library designed for embedded systems. The vulnerability exists in the ReadPropertyMultiple service property decoder and allows unauthenticated remote attackers to read past allocated buffer boundaries by sending a specially crafted RPM request with a truncated property list.

The flaw stems from the rpm_decode_object_property() function calling the deprecated decode_tag_number_and_value() function, which accepts no buffer length parameter and reads blindly from whatever pointer it receives. When a crafted BACnet/IP packet containing a 1-byte property payload with an extended tag marker (0xF9) is sent to vulnerable devices, the decoder reads 1 byte past the end of the buffer, leading to crashes on embedded BACnet devices.

Critical Impact

This vulnerability enables unauthenticated remote attackers to crash embedded BACnet devices through network-based exploitation, potentially disrupting critical building automation and industrial control systems.

Affected Products

  • BACnet Stack versions prior to 1.4.3
  • BACnet Stack version 1.5.0-rc1
  • Any deployment enabling the ReadPropertyMultiple confirmed service handler (enabled by default in the reference server)

Discovery Timeline

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

Technical Details for CVE-2026-41503

Vulnerability Analysis

This out-of-bounds read vulnerability (CWE-125) affects the ReadPropertyMultiple (RPM) service implementation in BACnet Stack. The vulnerable code path is triggered when processing incoming BACnet/IP packets that contain malformed property lists in RPM requests.

The core issue lies in the use of a deprecated decoding function that performs no bounds checking. The decode_tag_number_and_value() function at src/bacnet/rpm.c:344 accepts a raw pointer without any accompanying length parameter, making it impossible for the function to verify whether sufficient data exists before reading. This architectural flaw means any truncated or malformed input can cause the decoder to read beyond the allocated buffer.

The vulnerability is particularly concerning for embedded BACnet devices, which are commonly deployed in building automation systems, HVAC controls, and industrial environments where availability is critical. A successful exploit results in a denial of service condition through device crashes.

Root Cause

The root cause is the use of the deprecated decode_tag_number_and_value() function, which was designed without security considerations for buffer boundary validation. This function blindly trusts its input pointer without verifying that sufficient bytes remain in the buffer before attempting to decode tag data.

Specifically, when a BACnet/IP packet contains only a 1-byte property payload with an extended tag marker (0xF9), the decoder interprets this as indicating additional bytes follow. Since the buffer is truncated, the subsequent read operation accesses memory beyond the allocated boundary, triggering undefined behavior that manifests as crashes on embedded systems with limited memory protection.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Crafting a malicious BACnet/IP packet targeting the ReadPropertyMultiple service
  2. Including a truncated property list with a 1-byte payload containing the extended tag marker 0xF9
  3. Sending the packet to any BACnet device running a vulnerable version of BACnet Stack with the RPM service handler enabled

The vulnerability exists in src/bacnet/rpm.c and affects any deployment that enables the ReadPropertyMultiple confirmed service handler, which is enabled by default in the reference server implementation. This makes the attack surface particularly broad across BACnet-enabled building automation and industrial control installations.

Detection Methods for CVE-2026-41503

Indicators of Compromise

  • Unexpected crashes or restarts of BACnet-enabled embedded devices
  • Malformed BACnet/IP packets targeting UDP port 47808 (standard BACnet/IP port) with truncated property payloads
  • Network traffic containing extended tag markers (0xF9) in abnormally small RPM request payloads
  • Repeated connection attempts followed by device failures from the same source IP

Detection Strategies

  • Monitor BACnet/IP traffic for ReadPropertyMultiple requests with unusually small or malformed property lists
  • Implement intrusion detection signatures for BACnet packets containing extended tag markers with insufficient payload data
  • Deploy network anomaly detection to identify patterns of RPM requests followed by device unresponsiveness
  • Configure alerting for devices running BACnet Stack versions prior to 1.4.3

Monitoring Recommendations

  • Enable packet capture and logging on network segments containing BACnet devices
  • Monitor device health metrics for unexpected restarts or communication failures
  • Implement centralized logging for BACnet device events to correlate potential exploitation attempts
  • Establish baselines for normal BACnet traffic patterns to identify anomalous activity

How to Mitigate CVE-2026-41503

Immediate Actions Required

  • Upgrade BACnet Stack to version 1.4.3 or later immediately
  • Identify all devices in your environment running vulnerable BACnet Stack versions
  • Implement network segmentation to restrict access to BACnet devices from untrusted networks
  • Enable firewall rules to limit BACnet/IP traffic (UDP port 47808) to authorized management systems only

Patch Information

The vulnerability is fixed in BACnet Stack version 1.4.3. Organizations should upgrade to this version or later to remediate the vulnerability. Detailed patch information and security advisory are available from the GitHub Security Advisory.

The fix addresses the unsafe buffer handling by replacing the deprecated decode_tag_number_and_value() function with a bounds-checked alternative that validates buffer length before decoding operations.

Workarounds

  • Disable the ReadPropertyMultiple confirmed service handler if not required for operations
  • Implement network-level access controls to restrict BACnet/IP traffic to trusted sources only
  • Deploy an application-layer firewall capable of inspecting and filtering malformed BACnet packets
  • Isolate vulnerable BACnet devices on segregated network segments until patching is possible
bash
# Example: Firewall rule to restrict BACnet/IP access (iptables)
# Allow BACnet/IP only from trusted management network
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-41502: 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