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

CVE-2026-41285: OpenBSD slaacd/rad DoS Vulnerability

CVE-2026-41285 is a denial of service flaw in OpenBSD's slaacd and rad daemons caused by an infinite loop when processing crafted ICMPv6 packets. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-41285 Overview

A denial of service vulnerability exists in OpenBSD through version 7.8 affecting the slaacd and rad network daemons. The vulnerability occurs when these daemons receive a specially crafted ICMPv6 Neighbor Discovery (ND) option with a length field of zero over a local network. Due to improper validation of the nd_opt_len field before performing arithmetic operations, the daemons enter an infinite loop, causing service disruption.

Critical Impact

Attackers on the adjacent network can cause denial of service conditions on OpenBSD systems by sending malformed ICMPv6 packets that trigger an infinite loop in critical network daemons.

Affected Products

  • OpenBSD through version 7.8
  • slaacd daemon (Stateless Address Autoconfiguration Daemon)
  • rad daemon (Router Advertisement Daemon)

Discovery Timeline

  • 2026-04-21 - CVE CVE-2026-41285 published to NVD
  • 2026-04-21 - Last updated in NVD database

Technical Details for CVE-2026-41285

Vulnerability Analysis

This vulnerability is classified under CWE-1284 (Improper Validation of Specified Quantity in Input). The flaw resides in the ICMPv6 Neighbor Discovery packet processing logic within both the slaacd and rad daemons. When parsing ND options, the code performs an arithmetic calculation using the expression nd_opt_len * 8 - 2 without first validating that nd_opt_len is non-zero.

According to RFC 4861 Section 4.6, the length field in ND options specifies the length of the option in units of 8 octets. A zero-length option is invalid per the specification, but the vulnerable code fails to reject such malformed packets before entering processing loops.

The vulnerability requires adjacent network access, meaning an attacker must be on the same local network segment as the target system. No authentication or user interaction is required to exploit this flaw.

Root Cause

The root cause is a missing bounds check on the nd_opt_len field before it is used in arithmetic operations. When a zero-length ND option is received, the calculation nd_opt_len * 8 - 2 results in an underflow condition or a zero/negative iteration bound that causes the parsing loop to iterate indefinitely. The daemons lack defensive validation to reject options where nd_opt_len == 0 before entering the processing logic.

Attack Vector

The attack vector requires adjacent network access (AV:A), allowing any attacker on the same network segment to exploit this vulnerability. An attacker can craft a malicious ICMPv6 Router Advertisement or Neighbor Advertisement packet containing an ND option with nd_opt_len set to zero. When the target OpenBSD system's slaacd or rad daemon processes this packet, it enters an infinite loop, effectively causing a denial of service.

The attack requires no privileges and no user interaction, making it straightforward to execute from any compromised or malicious device on the local network. The impact is limited to availability (denial of service), with no confidentiality or integrity breach.

The vulnerability mechanism involves the ICMPv6 Neighbor Discovery option parsing routine failing to validate the length field before performing calculations. When a zero-length option is encountered, the expression nd_opt_len * 8 - 2 produces an invalid value that causes infinite iteration. For technical implementation details, refer to the GitHub OpenBSD Commit which addresses this issue.

Detection Methods for CVE-2026-41285

Indicators of Compromise

  • Unusual CPU utilization spikes in slaacd or rad daemon processes
  • Network service disruptions related to IPv6 address autoconfiguration or router advertisements
  • System logs showing slaacd or rad becoming unresponsive
  • Process monitoring alerts indicating daemon hangs without normal termination

Detection Strategies

  • Monitor for ICMPv6 packets with ND options containing nd_opt_len values of zero at the network perimeter or host level
  • Implement process monitoring to detect slaacd and rad daemons entering high CPU states without corresponding network activity
  • Deploy network intrusion detection signatures to identify malformed ICMPv6 Neighbor Discovery packets on local network segments
  • Enable system call tracing or process state monitoring to detect daemon hangs characteristic of infinite loops

Monitoring Recommendations

  • Configure alerts for abnormal CPU consumption by slaacd and rad processes on OpenBSD systems
  • Implement ICMPv6 traffic analysis on network segments where OpenBSD systems operate
  • Monitor daemon process states and set up automatic restart policies to maintain availability during attack attempts
  • Enable logging for IPv6-related network events to assist in post-incident analysis

How to Mitigate CVE-2026-41285

Immediate Actions Required

  • Apply the official OpenBSD patch as documented in the OpenBSD Errata Document
  • Review the specific code fix in the GitHub OpenBSD Commit
  • Audit network segments for potentially malicious devices that could exploit this vulnerability
  • Consider disabling IPv6 functionality temporarily on critical systems if patching cannot be immediately applied

Patch Information

OpenBSD has released patches to address this vulnerability. The fix adds proper validation to ensure nd_opt_len is non-zero before performing arithmetic operations in the ND option parsing code. System administrators should apply the relevant errata patch for OpenBSD 7.8 as documented in the official errata. The patch can be applied using the syspatch utility or by manually applying the source code changes from commit 086c5738bcd3c203bcc08d024fcf983cb409115f.

Workarounds

  • Implement strict ICMPv6 filtering at network boundaries to block malformed packets before they reach vulnerable systems
  • Segment networks to limit adjacent network access to trusted devices only
  • Deploy process monitoring with automatic daemon restart capabilities to reduce service disruption duration
  • Consider running IPv6-critical services on patched or alternative systems while awaiting maintenance windows for vulnerable OpenBSD hosts
bash
# Example: Apply OpenBSD errata patch using syspatch
syspatch

# Verify patch application
syspatch -l

# Restart affected daemons after patching
rcctl restart slaacd
rcctl restart rad

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenbsd

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-1284
  • Technical References
  • GitHub OpenBSD Commit

  • OpenBSD Errata Document

  • RFC 4861 Section Overview
  • Related CVEs
  • CVE-2024-10934: OpenBSD Use-After-Free Vulnerability

  • CVE-2023-35784: OpenBSD LibreSSL Use-After-Free Flaw

  • CVE-2024-43688: Vixie Cron Buffer Overflow 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