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

CVE-2026-34204: MinIO Auth Bypass Vulnerability

CVE-2026-34204 is an authentication bypass flaw in MinIO that lets authenticated users inject server-side encryption metadata via crafted headers. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-34204 Overview

CVE-2026-34204 is an authentication bypass vulnerability in MinIO, a high-performance object storage system. A flaw in the extractMetadataFromMime() function allows any authenticated user with s3:PutObject permission to inject internal server-side encryption metadata into objects by sending crafted X-Minio-Replication-* headers on a normal PutObject request. This vulnerability enables attackers to manipulate internal metadata that should be restricted to server-side operations only.

Critical Impact

Authenticated users can inject internal server-side encryption metadata, potentially compromising data integrity and causing denial of service through manipulation of replication and encryption settings.

Affected Products

  • MinIO versions prior to RELEASE.2026-03-26T21-24-40Z

Discovery Timeline

  • 2026-03-31 - CVE CVE-2026-34204 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34204

Vulnerability Analysis

This vulnerability stems from improper authentication controls in MinIO's metadata extraction process. The extractMetadataFromMime() function fails to properly validate and restrict certain internal headers when processing PutObject requests. Specifically, the function does not adequately filter X-Minio-Replication-* headers, which are intended for internal server-side operations only.

When an authenticated user sends a standard PutObject request with maliciously crafted replication headers, the server incorrectly accepts and processes these headers as legitimate internal metadata. This allows the attacker to inject server-side encryption metadata into objects, bypassing the intended access controls for these sensitive internal settings.

The vulnerability is classified under CWE-287 (Improper Authentication), as the system fails to properly authenticate the source of metadata that should only originate from trusted internal components.

Root Cause

The root cause lies in insufficient input validation within the extractMetadataFromMime() function. The function processes HTTP headers during object uploads but does not properly distinguish between user-supplied headers and internal system headers. The X-Minio-Replication-* header namespace, which should be reserved for internal replication operations, is not adequately filtered when processing standard PutObject requests from authenticated users.

Attack Vector

This vulnerability is exploitable over the network by any authenticated user who possesses s3:PutObject permissions. The attack requires:

  1. Valid authentication credentials with s3:PutObject permission on at least one bucket
  2. The ability to send HTTP requests with custom headers to the MinIO server
  3. Crafted X-Minio-Replication-* headers in the PutObject request

The attacker sends a normal PutObject request but includes specially crafted X-Minio-Replication-* headers. The extractMetadataFromMime() function processes these headers without proper validation, allowing the injected metadata to be associated with the uploaded object. This can lead to data integrity violations and potential denial of service by manipulating encryption and replication settings.

For detailed technical analysis, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-34204

Indicators of Compromise

  • Unusual X-Minio-Replication-* headers appearing in PutObject requests from non-replication sources
  • Objects with unexpected server-side encryption metadata that was not configured by administrators
  • Anomalous replication metadata on objects in buckets where replication is not enabled
  • Authentication logs showing PutObject requests with suspicious custom header patterns

Detection Strategies

  • Implement network-level monitoring to detect PutObject requests containing X-Minio-Replication-* headers from non-trusted sources
  • Review MinIO access logs for patterns of header injection attempts in object upload operations
  • Deploy web application firewall (WAF) rules to flag or block requests with internal header namespaces
  • Correlate S3 API audit logs to identify users attempting to set restricted metadata

Monitoring Recommendations

  • Enable detailed audit logging for all S3 PutObject operations in MinIO
  • Configure alerting for objects created with server-side encryption metadata by users who should not have encryption management privileges
  • Monitor for sudden changes in replication metadata across buckets
  • Implement real-time log analysis for anomalous header patterns in API requests

How to Mitigate CVE-2026-34204

Immediate Actions Required

  • Upgrade MinIO to version RELEASE.2026-03-26T21-24-40Z or later immediately
  • Audit existing objects for unexpected or unauthorized encryption metadata
  • Review access logs for evidence of exploitation attempts using X-Minio-Replication-* headers
  • Restrict s3:PutObject permissions to only essential users while patching is in progress

Patch Information

MinIO has released a security patch in version RELEASE.2026-03-26T21-24-40Z that addresses this vulnerability. The patch adds proper validation to the extractMetadataFromMime() function to ensure that internal header namespaces, including X-Minio-Replication-*, cannot be injected by standard user requests. Organizations should update to this version or later as soon as possible. For more details, see the GitHub Security Advisory.

Workarounds

  • Deploy a reverse proxy or WAF in front of MinIO to strip or reject requests containing X-Minio-Replication-* headers from client connections
  • Implement network segmentation to restrict direct API access to trusted sources only
  • Temporarily disable public or untrusted access to buckets while awaiting patch deployment
  • Monitor and audit all PutObject operations for suspicious header injection attempts
bash
# Example: Nginx configuration to strip malicious headers
# Add to your nginx server block proxying to MinIO
proxy_set_header X-Minio-Replication-Actual-Size "";
proxy_set_header X-Minio-Replication-Proxy-Request "";
# Block all X-Minio-Replication-* headers from clients
if ($http_x_minio_replication_actual_size) {
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMinio

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:L/VA:H/SC:N/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
  • AvailabilityHigh
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33419: MinIO AIStor Auth Bypass Vulnerability

  • CVE-2026-33322: MinIO Auth Bypass Vulnerability

  • CVE-2023-28434: Minio Auth Bypass Vulnerability

  • CVE-2025-31489: MinIO Auth Bypass Vulnerability
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