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-2025-68926

CVE-2025-68926: Rustfs Auth Bypass Vulnerability

CVE-2025-68926 is an authentication bypass flaw in Rustfs distributed object storage system caused by a hardcoded static token. Attackers can execute privileged operations. This article covers technical details, impact, and fixes.

Published: March 11, 2026

CVE-2025-68926 Overview

CVE-2025-68926 is a critical authentication bypass vulnerability affecting RustFS, a distributed object storage system built in Rust. The vulnerability stems from the use of a hardcoded static authentication token ("rustfs rpc") for gRPC communications that is publicly exposed in the source code repository. This token is hardcoded on both client and server sides, is non-configurable, provides no mechanism for token rotation, and is universally valid across all RustFS deployments.

Any attacker with network access to the gRPC port can authenticate using this publicly known token and execute privileged operations including data destruction, policy manipulation, and cluster configuration changes.

Critical Impact

Complete authentication bypass allowing unauthorized remote access to privileged gRPC operations, enabling data destruction, policy manipulation, and full cluster compromise across all vulnerable RustFS deployments.

Affected Products

  • RustFS versions 1.0.0-alpha1 through 1.0.0-alpha77
  • All RustFS deployments using default gRPC authentication prior to version 1.0.0-alpha.78
  • RustFS distributed object storage clusters with exposed gRPC ports

Discovery Timeline

  • December 30, 2025 - CVE-2025-68926 published to NVD
  • January 16, 2026 - Last updated in NVD database

Technical Details for CVE-2025-68926

Vulnerability Analysis

This vulnerability represents a fundamental security design flaw classified as CWE-287 (Improper Authentication). The RustFS distributed object storage system implements gRPC authentication using a static, hardcoded token that provides no meaningful security whatsoever. The token "rustfs rpc" is embedded directly in the source code and publicly visible in the GitHub repository, meaning any attacker who examines the codebase can obtain valid authentication credentials.

The impact of this vulnerability is severe because it affects the gRPC interface, which is used for inter-node communication and administrative operations within RustFS clusters. Successful exploitation grants attackers the ability to perform privileged operations including deleting stored objects, modifying access policies, and reconfiguring cluster settings. This effectively means complete compromise of data confidentiality, integrity, and availability.

Root Cause

The root cause is the implementation of authentication using a hardcoded static token rather than dynamically generated, configurable credentials. The developers embedded the token "rustfs rpc" directly into both the client and server authentication code without providing any configuration mechanism to change it. This anti-pattern violates fundamental security principles by treating authentication as a compile-time constant rather than a runtime secret.

The hardcoded credentials provide identical authentication across all RustFS deployments worldwide, meaning a single token compromise (which is guaranteed since the source is public) affects every installation simultaneously.

Attack Vector

The attack vector is network-based and requires no prior authentication or user interaction. An attacker needs only network connectivity to the RustFS gRPC port to exploit this vulnerability. The exploitation process is straightforward:

  1. The attacker identifies a RustFS deployment with an accessible gRPC port
  2. The attacker connects to the gRPC service and provides the publicly known token "rustfs rpc" for authentication
  3. The RustFS server validates the token against its hardcoded value and grants full authenticated access
  4. The attacker can now execute any privileged gRPC operation including data manipulation, policy changes, and cluster administration

The simplicity of exploitation combined with the network attack vector makes this vulnerability particularly dangerous for any RustFS deployment exposed to untrusted networks.

Detection Methods for CVE-2025-68926

Indicators of Compromise

  • Unexpected gRPC connections to RustFS nodes from external or unauthorized IP addresses
  • Anomalous administrative operations such as mass object deletions or policy modifications
  • Authentication logs showing successful gRPC authentications from unrecognized sources
  • Cluster configuration changes that were not initiated by authorized administrators

Detection Strategies

  • Monitor network traffic for gRPC connections to RustFS ports from unauthorized sources
  • Implement log analysis to detect authentication events and correlate with known legitimate admin activity
  • Deploy network intrusion detection signatures to identify exploitation attempts using the hardcoded token
  • Audit RustFS cluster state for unexpected configuration changes or data modifications

Monitoring Recommendations

  • Enable comprehensive logging for all gRPC authentication events and administrative operations
  • Configure alerts for any gRPC connections originating from outside trusted network segments
  • Implement baseline monitoring for RustFS cluster configuration and object counts to detect unauthorized changes
  • Regularly review access logs to identify potential exploitation attempts or unauthorized access patterns

How to Mitigate CVE-2025-68926

Immediate Actions Required

  • Upgrade RustFS to version 1.0.0-alpha.78 or later immediately
  • Restrict network access to RustFS gRPC ports using firewall rules until patching is complete
  • Audit existing RustFS deployments for signs of compromise or unauthorized access
  • Review cluster configurations and stored data for evidence of unauthorized modifications

Patch Information

The RustFS maintainers have addressed this vulnerability in version 1.0.0-alpha.78. This release removes the hardcoded authentication token and implements a proper configurable authentication mechanism. Organizations should upgrade to this version or later as soon as possible. For detailed information about the security fix, refer to the RustFS Security Advisory.

Workarounds

  • Implement network-level access controls to restrict gRPC port access to only trusted management hosts
  • Place RustFS gRPC services behind a VPN or private network segment not accessible from untrusted networks
  • Deploy a reverse proxy with additional authentication in front of RustFS gRPC endpoints as a temporary measure
  • Consider taking affected RustFS clusters offline if they contain sensitive data until patching can be completed
bash
# Example firewall rules to restrict gRPC access
# Replace GRPC_PORT with your RustFS gRPC port
# Replace TRUSTED_MGMT_IP with authorized management hosts

# iptables example - allow only trusted IPs to gRPC port
iptables -A INPUT -p tcp --dport GRPC_PORT -s TRUSTED_MGMT_IP -j ACCEPT
iptables -A INPUT -p tcp --dport GRPC_PORT -j DROP

# Verify RustFS version after upgrade
rustfs --version
# Expected output should show 1.0.0-alpha.78 or later

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechRustfs

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability7.50%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-287
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-27607: Rustfs Auth Bypass Vulnerability

  • CVE-2026-21862: RustFS Auth Bypass Vulnerability

  • CVE-2026-27822: RustFS Console Stored XSS Vulnerability

  • CVE-2026-24762: RustFS Information Disclosure 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