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

CVE-2026-5445: DICOM Image Decoder Info Disclosure Bug

CVE-2026-5445 is an information disclosure flaw in DICOM Image Decoder caused by out-of-bounds reads in palette color images. This vulnerability exposes heap memory contents. Learn about technical details, impact, and fixes.

Published: April 9, 2026

CVE-2026-5445 Overview

An out-of-bounds read vulnerability exists in the DecodeLookupTable function within DicomImageDecoder.cpp. The lookup-table decoding logic used for PALETTE COLOR images does not validate pixel indices against the lookup table size. Crafted images containing indices larger than the palette size cause the decoder to read beyond allocated lookup table memory and expose heap contents in the output image.

Critical Impact

Attackers can craft malicious DICOM images to trigger out-of-bounds memory reads, potentially exposing sensitive heap data including protected health information (PHI) or credentials stored in memory.

Affected Products

  • Orthanc Server (DICOM image processing components)
  • Applications using the affected DicomImageDecoder.cpp component
  • Medical imaging systems processing PALETTE COLOR DICOM images

Discovery Timeline

  • 2026-04-09 - CVE CVE-2026-5445 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-5445

Vulnerability Analysis

This out-of-bounds read vulnerability stems from insufficient bounds checking in the DICOM image decoder's palette color processing routine. The DecodeLookupTable function processes pixel index values from incoming DICOM images and uses these indices to retrieve color values from a pre-allocated lookup table. However, the function fails to validate that pixel indices fall within the valid range of the lookup table's allocated memory.

When processing a maliciously crafted DICOM image containing pixel index values that exceed the palette size, the decoder attempts to read memory locations beyond the allocated lookup table buffer. This results in heap memory contents being incorporated into the decoded output image, effectively creating an information disclosure channel.

The vulnerability is particularly concerning in medical imaging environments where DICOM servers process images from potentially untrusted sources, such as external healthcare facilities or patient-uploaded imaging data.

Root Cause

The root cause of this vulnerability is the absence of input validation on pixel index values before they are used to index into the color lookup table. The DecodeLookupTable function assumes that all pixel indices in the DICOM image will be within the bounds of the palette size, but this assumption is not enforced programmatically.

Specifically, when a PALETTE COLOR DICOM image specifies a lookup table of size N, any pixel index value should be validated to ensure it falls within the range [0, N-1]. Without this validation, an attacker can supply index values greater than or equal to N, causing the decoder to read from unintended memory locations on the heap.

Attack Vector

The attack vector involves supplying a specially crafted DICOM image file to a vulnerable application or server. The attack proceeds as follows:

  1. The attacker creates a DICOM image with PALETTE COLOR photometric interpretation
  2. The image's lookup table is defined with a specific size (e.g., 256 entries)
  3. Pixel data within the image contains index values that exceed the lookup table size
  4. When the vulnerable decoder processes this image, it reads beyond the lookup table bounds
  5. Heap memory contents are written into the output image as color data
  6. The attacker retrieves the processed image to extract leaked memory contents

This attack can be executed remotely by uploading malicious DICOM files to medical imaging servers or by sending them through DICOM network protocols (such as C-STORE operations).

The vulnerability mechanism exploits the lack of bounds validation in the palette lookup process. When pixel indices exceed the palette size, the decoder reads arbitrary heap memory, which may contain sensitive data such as session tokens, patient information, or internal system data. For detailed technical information, refer to the CERT Vulnerability Advisory #536588.

Detection Methods for CVE-2026-5445

Indicators of Compromise

  • DICOM images with unusually large pixel index values in PALETTE COLOR encoded files
  • Abnormal memory access patterns or segmentation faults in DICOM processing services
  • Output images containing noise patterns inconsistent with normal medical imaging artifacts
  • Unexpected data patterns in rendered DICOM palette color images

Detection Strategies

  • Monitor DICOM processing services for abnormal memory read patterns or access violations
  • Implement input validation rules to detect DICOM files with pixel indices exceeding declared palette sizes
  • Deploy application-level monitoring to detect heap memory exposure in image processing pipelines
  • Use SentinelOne's behavioral AI to detect anomalous memory access patterns in medical imaging applications

Monitoring Recommendations

  • Enable verbose logging on DICOM servers to capture details of processed image metadata including palette sizes
  • Configure alerts for memory access violations or unexpected crashes in image decoder processes
  • Monitor network traffic for unusual DICOM file uploads or C-STORE operations from untrusted sources
  • Implement file integrity monitoring on DICOM storage directories to detect potential attack artifacts

How to Mitigate CVE-2026-5445

Immediate Actions Required

  • Review and audit all deployments using the affected DicomImageDecoder.cpp component
  • Implement network segmentation to restrict DICOM server access to trusted sources only
  • Enable additional logging and monitoring on DICOM processing infrastructure
  • Consider temporarily disabling PALETTE COLOR image processing if operationally feasible

Patch Information

Organizations should monitor the Orthanc Server Official Site for security updates addressing this vulnerability. Review the CERT Vulnerability Advisory #536588 for the latest remediation guidance. Until a patch is available, implement the workarounds listed below to reduce exposure.

Workarounds

  • Implement input validation to verify pixel indices do not exceed the declared palette table size before processing
  • Restrict DICOM image uploads to authenticated and trusted sources only
  • Deploy Web Application Firewalls (WAF) or DICOM-aware proxies to filter potentially malicious image files
  • Use memory-safe processing environments or sandboxing for DICOM image decoding operations

Until an official patch is released, administrators should implement bounds checking at the application layer. A defensive validation approach should verify that all pixel index values fall within the range [0, paletteSize-1] before lookup table access. Contact your medical imaging software vendor for specific guidance on implementing these mitigations in your environment.

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechN/A

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • CERT Vulnerability Advisory #536588

  • Machine Spirits Homepage

  • Orthanc Server Official Site
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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