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-2023-28433

CVE-2023-28433: Minio Privilege Escalation Vulnerability

CVE-2023-28433 is a privilege escalation vulnerability in Minio on Windows that allows low-privileged users to create admin accounts. This article covers the technical details, affected versions, and mitigation strategies.

Published: January 28, 2026

CVE-2023-28433 Overview

CVE-2023-28433 is a path traversal and privilege escalation vulnerability in MinIO, a popular Multi-Cloud Object Storage framework. The vulnerability affects all MinIO installations running on Windows systems prior to version RELEASE.2023-03-20T20-16-18Z. Due to improper input validation, MinIO fails to filter the backslash (\) character in object paths, enabling attackers with minimal permissions to place objects in arbitrary buckets and escalate privileges to administrator level.

Critical Impact

A low-privileged user with only PutObject permissions on a specific bucket can exploit this vulnerability to create admin user accounts, resulting in complete compromise of the MinIO deployment.

Affected Products

  • MinIO on Windows prior to version RELEASE.2023-03-20T20-16-18Z
  • MinIO deployments using access keys, service accounts, or STS credentials with limited PutObject permissions
  • Any Windows-based MinIO infrastructure without proper path validation controls

Discovery Timeline

  • 2023-03-22 - CVE-2023-28433 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-28433

Vulnerability Analysis

This vulnerability represents a classic path traversal flaw combined with authorization bypass, specific to Windows-based MinIO deployments. The core issue lies in MinIO's failure to properly sanitize the backslash character (\) in object key paths on Windows systems.

On Windows, both forward slashes (/) and backslashes (\) are valid path separators. While MinIO properly filters forward slashes to prevent directory traversal attacks, it neglects to apply the same validation to backslashes. This oversight allows an attacker to craft malicious object paths that escape the intended bucket boundaries.

The vulnerability is classified under CWE-668 (Exposure of Resource to Wrong Sphere), as it allows resources to be placed in locations outside the authorized scope. An attacker with minimal PutObject privileges in a single bucket can leverage this flaw to write objects to any bucket on the system, including administrative configuration buckets.

Root Cause

The root cause is insufficient input validation in MinIO's path handling logic on Windows platforms. The application fails to normalize and sanitize path separators consistently across different operating systems. Specifically, the backslash character is not treated as a potential directory separator or escape character when processing object keys on Windows systems.

This creates a path traversal condition where specially crafted object names containing backslashes can reference parent directories or entirely different bucket namespaces, bypassing the intended bucket-level access controls.

Attack Vector

The attack vector is network-based and requires only low-level authenticated access. An attacker can exploit this vulnerability through the following mechanism:

  1. The attacker authenticates to MinIO with credentials that have PutObject permission limited to a specific bucket
  2. The attacker crafts a PutObject request with an object key containing backslash characters that traverse outside the authorized bucket
  3. Due to missing validation, MinIO processes the request and writes the object to the attacker-specified location
  4. By targeting administrative configuration files or user management paths, the attacker can create new admin user accounts
  5. The attacker authenticates with the newly created admin credentials, achieving full system compromise

Since no user interaction is required and the attack can be performed remotely over the network, this vulnerability poses a significant risk to Windows-based MinIO deployments exposed to untrusted users or networks.

Detection Methods for CVE-2023-28433

Indicators of Compromise

  • Unexpected objects appearing in buckets that should not be accessible to certain users or service accounts
  • New administrative users created without authorization or audit trail from legitimate admin actions
  • API requests containing backslash characters (\) in object key paths
  • Unusual PutObject activity from service accounts or access keys with limited permissions

Detection Strategies

  • Monitor MinIO access logs for object paths containing backslash characters, especially in combination with relative path indicators
  • Implement alerting for any new admin user creation events and correlate with authorized change requests
  • Deploy file integrity monitoring on MinIO configuration and IAM-related bucket contents
  • Review access patterns for service accounts performing PutObject operations outside their designated buckets

Monitoring Recommendations

  • Enable comprehensive audit logging for all MinIO API operations, particularly write operations
  • Configure alerts for administrative changes including user creation, policy modifications, and bucket ACL changes
  • Implement real-time log analysis to detect path traversal patterns in object keys
  • Deploy network-level monitoring to detect unusual API call patterns from MinIO clients

How to Mitigate CVE-2023-28433

Immediate Actions Required

  • Upgrade all Windows-based MinIO deployments to version RELEASE.2023-03-20T20-16-18Z or later immediately
  • Audit existing admin users and service accounts for any unauthorized additions
  • Review MinIO access logs for evidence of exploitation attempts or successful attacks
  • Rotate credentials for any accounts that may have been compromised

Patch Information

MinIO has released a patched version that addresses this vulnerability. The fix properly validates and sanitizes path separators on Windows systems, preventing backslash-based path traversal attacks.

Patched Version:RELEASE.2023-03-20T20-16-18Z

For detailed patch information, see the MinIO commit updates and the GitHub Security Advisory.

The official release can be downloaded from the MinIO Release Tag.

Workarounds

  • According to the security advisory, there are no known workarounds for this vulnerability - upgrading is the only remediation
  • As a defense-in-depth measure, restrict network access to MinIO deployments from untrusted networks
  • Implement strict monitoring and alerting for any administrative changes until patching is complete
  • Consider temporarily disabling or restricting service accounts and access keys with PutObject permissions until the patch is applied
bash
# Upgrade MinIO to patched version on Windows
# Download the latest MinIO release
curl -O https://dl.min.io/server/minio/release/windows-amd64/minio.exe

# Verify the version after upgrade
minio.exe --version
# Should show RELEASE.2023-03-20T20-16-18Z or later

# Review existing admin users for unauthorized entries
mc admin user list myminio

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechMinio

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-668

  • NVD-CWE-noinfo
  • Technical References
  • MinIO Release Tag
  • Vendor Resources
  • MinIO Commit Update

  • MinIO Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-62506: MinIO Privilege Escalation Vulnerability

  • CVE-2024-55949: MinIO IAM Privilege Escalation Vulnerability

  • CVE-2021-43858: MinIO Privilege Escalation Vulnerability

  • CVE-2026-40344: MinIO 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