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
    • 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-33990

CVE-2026-33990: Docker Model Runner SSRF Vulnerability

CVE-2026-33990 is a server-side request forgery vulnerability in Docker Model Runner that enables attackers to make arbitrary requests to internal services. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33990 Overview

Docker Model Runner (DMR) is software used to manage, run, and deploy AI models using Docker. A Server-Side Request Forgery (SSRF) vulnerability exists in the OCI registry token exchange flow in versions prior to 1.1.25. When pulling a model, Model Runner follows the realm URL from the registry's WWW-Authenticate header without validating the scheme, hostname, or IP range. This allows a malicious OCI registry to set the realm to an internal URL (e.g., http://127.0.0.1:3000/), causing Model Runner running on the host to make arbitrary GET requests to internal services and reflect the full response body back to the caller.

Critical Impact

A malicious OCI registry can exploit this vulnerability to access internal services, exfiltrate sensitive data, and relay information back to an attacker-controlled registry via the Authorization: Bearer header token exchange mechanism.

Affected Products

  • Docker Model Runner versions prior to 1.1.25
  • Docker Desktop with Model Runner exposed to localhost over TCP
  • Systems running Docker Model Runner without Enhanced Container Isolation (ECI)

Discovery Timeline

  • 2026-04-01 - CVE CVE-2026-33990 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33990

Vulnerability Analysis

This Server-Side Request Forgery (SSRF) vulnerability (CWE-918) resides in Docker Model Runner's OCI registry authentication flow. The vulnerability occurs when Model Runner processes the WWW-Authenticate header response from an OCI registry during the token exchange process for pulling AI models.

The core issue is insufficient validation of the realm URL parameter within the WWW-Authenticate header. When a user attempts to pull a model from a registry, the Model Runner initiates an authentication flow that relies on realm URLs provided by the registry itself. The application fails to validate whether the realm URL points to a legitimate external authentication service or to an internal network resource.

Root Cause

The root cause is improper input validation of the realm URL extracted from the WWW-Authenticate header during OCI registry authentication. The Model Runner trusts the registry-provided realm URL without implementing necessary security controls such as scheme validation (blocking non-HTTPS schemes), hostname allowlisting, or IP range restrictions that would prevent requests to internal network addresses like 127.0.0.1, 10.x.x.x, 192.168.x.x, or other RFC 1918 private addresses.

Attack Vector

An attacker can exploit this vulnerability by setting up a malicious OCI registry that returns a crafted WWW-Authenticate header with a realm URL pointing to internal services. The attack flow proceeds as follows:

  1. The attacker hosts a malicious OCI registry accessible to the victim
  2. The victim's Docker Model Runner attempts to pull a model from the malicious registry
  3. The malicious registry responds with a WWW-Authenticate header containing an internal URL as the realm (e.g., http://127.0.0.1:3000/internal-api)
  4. Model Runner follows the realm URL and makes a GET request to the internal service
  5. The response from the internal service is reflected back to the attacker
  6. Additionally, the token exchange mechanism can be abused to relay data from internal services to the attacker via the Authorization: Bearer header

This attack enables reconnaissance of internal network services, exfiltration of sensitive data from internal endpoints, and potential pivoting to further compromise internal infrastructure. For technical details about this vulnerability, see the GitHub Security Advisory.

Detection Methods for CVE-2026-33990

Indicators of Compromise

  • Unexpected outbound requests from Docker Model Runner to internal IP addresses (127.0.0.1, 10.x.x.x, 192.168.x.x, 172.16.x.x-172.31.x.x)
  • Model Runner processes making HTTP requests to non-standard ports on localhost
  • Unusual WWW-Authenticate headers in OCI registry responses containing internal URLs
  • Authentication token exchanges with unexpected realm endpoints

Detection Strategies

  • Monitor network traffic from Docker Model Runner processes for connections to internal IP ranges or localhost
  • Implement network segmentation alerts for cross-zone traffic originating from container management services
  • Review Docker Model Runner logs for authentication flows involving suspicious realm URLs
  • Deploy intrusion detection rules to flag WWW-Authenticate headers containing RFC 1918 addresses or localhost references

Monitoring Recommendations

  • Enable verbose logging for Docker Model Runner authentication events
  • Configure alerts for Model Runner network connections to internal services that should not be accessed during normal operations
  • Monitor for data exfiltration patterns where internal service responses may be relayed through outbound connections
  • Implement DNS query monitoring to detect resolution of internal hostnames by the Model Runner service

How to Mitigate CVE-2026-33990

Immediate Actions Required

  • Upgrade Docker Model Runner to version 1.1.25 or later immediately
  • Enable Enhanced Container Isolation (ECI) in Docker Desktop to block container access to Model Runner
  • Restrict Model Runner's network access to only necessary external registries using firewall rules
  • Audit current model sources and remove any untrusted or unknown registries

Patch Information

Docker has released version 1.1.25 of Model Runner which addresses this SSRF vulnerability. Users should upgrade to this version or later to receive the security fix. For Docker Desktop users, enabling Enhanced Container Isolation (ECI) provides an additional layer of protection by blocking container access to Model Runner. However, if the Docker Model Runner is exposed to localhost over TCP in specific configurations, the vulnerability may still be exploitable even with ECI enabled. For complete details, refer to the GitHub Security Advisory.

Workarounds

  • Enable Enhanced Container Isolation (ECI) in Docker Desktop settings to prevent containers from accessing Model Runner
  • Avoid exposing Docker Model Runner to localhost over TCP unless absolutely necessary
  • Implement network-level controls to restrict Model Runner from accessing internal services
  • Only pull models from trusted, verified OCI registries
bash
# Configuration example
# Enable Enhanced Container Isolation in Docker Desktop
# Navigate to Docker Desktop > Settings > Resources > Advanced
# Enable "Enhanced Container Isolation"

# If using Docker Model Runner on command line, restrict network access
# using firewall rules (example using iptables on Linux):
iptables -A OUTPUT -m owner --uid-owner docker-model-runner -d 127.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner docker-model-runner -d 10.0.0.0/8 -j DROP
iptables -A OUTPUT -m owner --uid-owner docker-model-runner -d 172.16.0.0/12 -j DROP
iptables -A OUTPUT -m owner --uid-owner docker-model-runner -d 192.168.0.0/16 -j DROP

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechDocker Model Runner

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:L/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
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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