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

CVE-2026-44919: OpenStack Ironic DoS Vulnerability

CVE-2026-44919 is a denial of service flaw in OpenStack Ironic that triggers an infinite loop during image checksum calculations via file:///dev/zero URLs. This article covers technical details, affected versions, and mitigations.

Published: May 14, 2026

CVE-2026-44919 Overview

CVE-2026-44919 affects OpenStack Ironic through version 35.x prior to commit a3f6d73. The vulnerability resides in the image handling subsystem. An infinite loop occurs in checksum calculations when an attacker supplies the file:///dev/zero URL as input. Authenticated users with API access can trigger this condition. The flaw is categorized under [CWE-696] Incorrect Behavior Order, resulting in a denial-of-service against the Ironic bare-metal provisioning service. The issue was resolved in OpenStack Ironic commit a3f6d735ac3642ab95b49142c7305f072ae748d0.

Critical Impact

An authenticated attacker can force the Ironic service into an infinite checksum calculation loop, exhausting CPU and disrupting bare-metal provisioning operations.

Affected Products

  • OpenStack Ironic versions through 35.x
  • OpenStack Ironic releases prior to commit a3f6d73
  • Deployments processing user-supplied image URLs through Ironic

Discovery Timeline

  • 2026-05-14 - CVE CVE-2026-44919 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-44919

Vulnerability Analysis

OpenStack Ironic provisions bare-metal machines and downloads operating system images during deployment workflows. The service computes checksums on supplied image sources to verify integrity. When the image URL points to file:///dev/zero, the underlying Linux pseudo-device returns an unbounded stream of null bytes.

The checksum routine reads from the source until end-of-file. Since /dev/zero never returns EOF, the read loop never terminates. The worker process consumes CPU indefinitely while attempting to compute a hash over an effectively infinite input. This blocks legitimate provisioning requests and degrades service availability.

Root Cause

The root cause is missing validation on image URL schemes and pathological local-file targets. Ironic accepts file:// URLs without restricting which paths can be referenced. The checksum implementation also lacks a maximum read size or timeout. These two omissions combine to enable the infinite loop condition referenced in the Launchpad bug report.

Attack Vector

An authenticated user with permission to submit image references to the Ironic API supplies file:///dev/zero as the image source. When Ironic begins checksum verification, the conductor worker enters an unterminating read loop. Repeated submissions can exhaust available conductor workers and produce a denial-of-service across the deployment fleet. The fix is documented in the OpenStack Ironic upstream commit.

Detection Methods for CVE-2026-44919

Indicators of Compromise

  • Ironic conductor processes consuming sustained 100% CPU on a single core without corresponding deployment progress.
  • API requests referencing file:///dev/zero or other Linux pseudo-devices such as /dev/random in image URL fields.
  • Long-running or stalled provisioning tasks that never reach the active state.

Detection Strategies

  • Inspect Ironic API access logs for image references using the file:// URL scheme, particularly paths under /dev/.
  • Alert on conductor worker threads whose checksum operations exceed expected duration thresholds.
  • Correlate authenticated API calls against task completion rates to identify workers stuck in compute-bound loops.

Monitoring Recommendations

  • Monitor CPU utilization per Ironic conductor process and trigger alerts on sustained saturation.
  • Track the count of in-flight image verification tasks and flag deviations from baseline.
  • Forward Ironic and Keystone authentication logs to a central SIEM for correlation with resource metrics.

How to Mitigate CVE-2026-44919

Immediate Actions Required

  • Apply OpenStack Ironic commit a3f6d735ac3642ab95b49142c7305f072ae748d0 or upgrade to a release that incorporates this fix.
  • Audit Ironic policy files to restrict which roles can submit arbitrary image URLs.
  • Review recent API logs for prior submissions referencing file:///dev/zero or similar pseudo-device paths.

Patch Information

The upstream fix is available in the OpenStack Ironic repository at commit a3f6d73. Operators running versions through 35.x must update to a build containing this commit. Reference the OpenStack Ironic commit and the Launchpad bug report for full technical details.

Workarounds

  • Disable support for the file:// URL scheme in Ironic image handling configuration until patching is complete.
  • Restrict Ironic API access through Keystone role-based policies, limiting image submission to trusted operators.
  • Place resource limits on Ironic conductor processes using systemd CPUQuota or cgroups to contain runaway loops.
bash
# Example systemd override to cap conductor CPU usage
sudo systemctl edit openstack-ironic-conductor.service
# Add the following lines:
# [Service]
# CPUQuota=200%
# TimeoutStartSec=300
sudo systemctl daemon-reload
sudo systemctl restart openstack-ironic-conductor.service

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenstack

  • SeverityMEDIUM

  • CVSS Score4.3

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-696
  • Technical References
  • Launchpad Bug Report

  • OpenStack Ironic Commit
  • Related CVEs
  • CVE-2026-43002: OpenStack Horizon DOS Vulnerability

  • CVE-2026-44916: OpenStack Ironic XSS Vulnerability

  • CVE-2026-42997: OpenStack Ironic Auth Bypass Vulnerability

  • CVE-2026-43003: Openstack Ironic Python Agent RCE Flaw
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