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

CVE-2026-5439: Orthanc ZIP Processing DoS Vulnerability

CVE-2026-5439 is a memory exhaustion denial of service flaw in Orthanc ZIP archive processing that allows attackers to crash servers with crafted archives. This post covers technical details, impact, and mitigation.

Published: April 9, 2026

CVE-2026-5439 Overview

A memory exhaustion vulnerability exists in Orthanc's ZIP archive processing functionality. Orthanc automatically extracts ZIP archives uploaded to certain endpoints and trusts metadata fields describing the uncompressed size of archived files. An attacker can craft a small ZIP archive containing a forged size value, causing the server to allocate extremely large buffers during extraction, leading to denial of service conditions.

Critical Impact

This vulnerability allows remote attackers to exhaust server memory resources by uploading maliciously crafted ZIP archives, potentially causing service disruption for medical imaging systems.

Affected Products

  • Orthanc Server (versions not specified)

Discovery Timeline

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

Technical Details for CVE-2026-5439

Vulnerability Analysis

This vulnerability falls into the category of Memory Exhaustion, a type of Denial of Service (DoS) attack. The core issue stems from Orthanc's implicit trust in metadata contained within ZIP archives during the extraction process. When processing uploaded archives, the server reads the declared uncompressed file size from the ZIP header without validating whether this size is reasonable or accurate.

The Orthanc DICOM server is widely used in medical imaging environments for storing, managing, and sharing medical images. Its REST API accepts ZIP archive uploads for bulk data import operations. The vulnerable code path trusts the size fields in ZIP local file headers and central directory entries, allocating memory buffers based on these attacker-controlled values.

Root Cause

The root cause of this vulnerability is improper input validation of ZIP archive metadata. Specifically, the application fails to validate the declared uncompressed size of files within a ZIP archive before allocating memory buffers. ZIP archives contain metadata fields that specify the compressed and uncompressed sizes of each archived file. A malicious actor can craft a ZIP archive where these declared sizes are significantly larger than the actual data, creating what is commonly known as a "ZIP bomb" variant.

When Orthanc processes such an archive, it attempts to allocate memory based on the forged size values rather than implementing progressive extraction with size limits. This design flaw allows a small uploaded file to trigger allocation of gigabytes of memory on the server.

Attack Vector

The attack can be executed remotely by any user with access to upload ZIP archives to the Orthanc server. The attacker crafts a small ZIP archive (potentially just a few kilobytes) with manipulated header fields declaring an extremely large uncompressed size. Upon upload to the vulnerable endpoint, the server attempts to allocate memory buffers matching the declared size.

The attack does not require authentication in default configurations and can be triggered through standard HTTP POST requests to the archive upload endpoints. Multiple concurrent malicious uploads could accelerate memory exhaustion and service disruption.

For technical details on exploitation, see the CERT Vulnerability Advisory #536588.

Detection Methods for CVE-2026-5439

Indicators of Compromise

  • Unusual memory consumption spikes on Orthanc server processes during ZIP upload operations
  • Multiple failed or slow uploads of small ZIP files followed by out-of-memory errors in application logs
  • Server crashes or restarts coinciding with archive upload requests
  • Abnormal ratios between uploaded file sizes and declared uncompressed sizes in request logs

Detection Strategies

  • Monitor memory utilization patterns on systems running Orthanc, alerting on rapid consumption increases
  • Implement network-level inspection to identify ZIP archives with suspicious declared-to-actual size ratios
  • Review Orthanc server logs for memory allocation failures or out-of-memory conditions
  • Deploy file upload validators that verify ZIP header integrity before passing to the application

Monitoring Recommendations

  • Configure memory usage alerts for Orthanc processes with thresholds below system limits
  • Implement logging for all ZIP archive uploads including file sizes and source addresses
  • Monitor for repeated upload attempts from single sources that may indicate attack attempts
  • Enable resource usage monitoring at the container or process level for early detection

How to Mitigate CVE-2026-5439

Immediate Actions Required

  • Restrict access to ZIP upload endpoints to trusted users or networks only
  • Implement upload size limits at the web server or reverse proxy level
  • Consider temporarily disabling ZIP archive upload functionality if not critical to operations
  • Monitor server memory utilization and configure process resource limits

Patch Information

Consult the Orthanc Server Official Site for the latest security updates and patched versions. Review the CERT Vulnerability Advisory #536588 for additional remediation guidance.

Workarounds

  • Deploy a reverse proxy that validates ZIP archives before forwarding to Orthanc, rejecting files with suspicious declared sizes
  • Implement operating system or container-level memory limits (cgroups) to prevent complete system exhaustion
  • Configure firewall rules to restrict access to upload endpoints from untrusted networks
  • Enable authentication requirements for all archive upload operations if not already configured

Administrators should implement resource constraints at the system level as a defense-in-depth measure:

bash
# Configuration example
# Example: Limit Orthanc process memory using systemd
# Add to /etc/systemd/system/orthanc.service.d/override.conf
[Service]
MemoryLimit=4G
MemoryMax=4G

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOrthanc

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Machine Spirits Homepage

  • Orthanc Server Official Site
  • Related CVEs
  • CVE-2026-5438: Orthanc Gzip Decompression DoS Vulnerability

  • CVE-2026-5444: Heap Buffer Overflow Vulnerability

  • CVE-2025-15581: Orthanc Privilege Escalation Vulnerability

  • CVE-2025-0896: Orthanc Server Auth Bypass 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