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

CVE-2026-41475: BACnet Stack Information Disclosure Flaw

CVE-2026-41475 is an information disclosure vulnerability in BACnet Stack that allows remote attackers to read sensitive data through crafted packets. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-41475 Overview

CVE-2026-41475 is an out-of-bounds read vulnerability in the BACnet Stack library, an open source BACnet protocol stack written in C for embedded systems. The vulnerability exists in the WritePropertyMultiple (WPM) service decoder, where the wpm_decode_object_property() function calls the deprecated decode_tag_number_and_value() function without performing proper bounds checking on the input buffer.

Unauthenticated remote attackers can exploit this vulnerability by sending a specially crafted BACnet/IP packet containing a truncated property payload. When processed by the vulnerable decoder, this causes the system to read 1-7 bytes past the end of the allocated buffer, potentially resulting in crashes or information disclosure on embedded BACnet devices.

Critical Impact

Remote unauthenticated attackers can cause denial of service or information disclosure on embedded building automation systems by sending malformed BACnet/IP packets.

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

  • 2026-04-24 - CVE-2026-41475 published to NVD
  • 2026-04-28 - Last updated in NVD database

Technical Details for CVE-2026-41475

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read) and affects the WritePropertyMultiple service decoder in the BACnet Stack library. The issue arises from inadequate input validation when processing BACnet/IP packets.

When a truncated WPM request is received, the wpm_decode_object_property() function processes the incoming data using the deprecated decode_tag_number_and_value() function. This deprecated function lacks proper bounds checking, allowing the decoder to read beyond the allocated buffer boundaries when parsing malformed packets.

The vulnerability is particularly concerning for embedded BACnet devices commonly deployed in building automation systems (BAS), HVAC control systems, and industrial environments. These devices often operate on networks with limited security controls, making them susceptible to network-based attacks.

Root Cause

The root cause of this vulnerability is the use of the deprecated decode_tag_number_and_value() function within the wpm_decode_object_property() function. This deprecated function performs no bounds checking on the input buffer, trusting that the incoming data is well-formed. When an attacker provides a truncated property payload, the decoder continues reading past the allocated buffer, accessing 1-7 bytes of adjacent memory.

The lack of input validation before processing BACnet service requests compounds this issue, as malformed packets are not rejected at an earlier stage in the processing pipeline.

Attack Vector

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

  1. Crafting a malicious BACnet/IP packet with a truncated property payload in the WritePropertyMultiple service request
  2. Sending the packet to a vulnerable BACnet device over UDP port 47808 (the standard BACnet/IP port)
  3. When the target device processes the malformed packet, the out-of-bounds read occurs

The vulnerability manifests in the WPM service decoder when processing truncated property payloads. The deprecated decode_tag_number_and_value() function reads tag data without validating buffer boundaries, causing 1-7 bytes to be read past the allocated buffer. This can result in application crashes or potential leakage of adjacent memory contents. For technical implementation details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-41475

Indicators of Compromise

  • Unexpected crashes or restarts of BACnet-enabled devices or services
  • Malformed BACnet/IP packets with truncated WritePropertyMultiple service requests on UDP port 47808
  • Memory access violations or segmentation faults in BACnet stack processes
  • Unusual network traffic patterns targeting BACnet/IP ports

Detection Strategies

  • Deploy network intrusion detection systems (IDS) with rules to detect malformed BACnet/IP packets
  • Monitor BACnet devices for unexpected crashes, restarts, or error conditions
  • Implement deep packet inspection for BACnet/IP traffic to identify truncated WPM requests
  • Use application-level logging to capture and analyze BACnet service request processing errors

Monitoring Recommendations

  • Enable verbose logging on BACnet controllers and gateways to capture protocol-level errors
  • Implement network segmentation monitoring to detect unauthorized access to building automation networks
  • Set up alerts for BACnet device availability and response time anomalies
  • Deploy SentinelOne agents on systems running BACnet stack software for real-time threat detection

How to Mitigate CVE-2026-41475

Immediate Actions Required

  • Update BACnet Stack to version 1.4.3 or later immediately
  • If running version 1.5.0-rc1, 1.5.0-rc2, or 1.5.0-rc3, update to a patched release
  • Isolate vulnerable BACnet devices on segmented networks until patching is complete
  • Implement firewall rules to restrict access to BACnet/IP port 47808 from untrusted networks

Patch Information

The vulnerability has been fixed in BACnet Stack version 1.4.3. Organizations should upgrade to this version or later to remediate the vulnerability. For detailed patch information and release notes, refer to the GitHub Security Advisory.

Workarounds

  • Implement network segmentation to isolate BACnet devices from untrusted networks
  • Deploy firewall rules to restrict BACnet/IP traffic (UDP 47808) to authorized management systems only
  • Use VPN connections for remote BACnet device management
  • Enable rate limiting on network devices to throttle potential attack traffic
bash
# Example firewall rule to restrict BACnet/IP access (iptables)
iptables -A INPUT -p udp --dport 47808 -s 192.168.100.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
  • TypeInformation Disclosure

  • Vendor/TechBacnet Stack

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.27%

  • 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-40279: BACnet Stack Buffer Overflow Vulnerability

  • CVE-2026-21878: BACnet Stack Path Traversal Vulnerability

  • CVE-2026-21870: BACnet Stack Buffer Overflow Vulnerability

  • CVE-2026-26264: BACnet Stack DoS 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