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

CVE-2026-22782: RustFS Information Disclosure Vulnerability

CVE-2026-22782 is an information disclosure flaw in RustFS that exposes HMAC secrets through logs when invalid RPC signatures are processed. This article covers the technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2026-22782 Overview

CVE-2026-22782 is an Information Leakage vulnerability in RustFS, a distributed object storage system built in Rust. When invalid RPC signatures are received, the server logs the shared HMAC secret and expected signature, exposing sensitive authentication material to anyone with log access. This enables attackers to forge RPC calls and potentially compromise the integrity of the distributed storage system.

Critical Impact

Exposure of HMAC shared secrets through debug logging allows attackers with log access to forge authenticated RPC requests, potentially enabling unauthorized administrative operations on the storage cluster.

Affected Products

  • RustFS versions >= 1.0.0-alpha.1 to 1.0.0-alpha.79

Discovery Timeline

  • 2026-01-16 - CVE CVE-2026-22782 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2026-22782

Vulnerability Analysis

This vulnerability falls under CWE-532 (Insertion of Sensitive Information into Log File). The RustFS distributed object storage system improperly logs sensitive authentication material when processing invalid RPC signature verification requests. Specifically, in the crates/ecstore/src/rpc/http_auth.rs file, the invalid signature error handling branch writes the shared HMAC secret and expected signature values directly to application logs.

The vulnerability is triggered whenever an invalidly signed RPC request reaches the server. Since the logging occurs before the request is rejected, any unauthenticated attacker can intentionally send malformed requests to harvest the HMAC secret from logs. Once obtained, this secret can be used to generate valid signatures for arbitrary RPC and admin requests.

Root Cause

The root cause is improper error handling in the verify_rpc_signature function within http_auth.rs. The developers included sensitive cryptographic material—the shared HMAC secret and computed expected signature—in error log messages for debugging purposes. This practice violates secure logging principles, as log files are often accessible to a broader audience than intended and may be transmitted to centralized logging systems, stored in plaintext, or exposed through other channels.

Attack Vector

This vulnerability is exploitable over the network without authentication. An attacker can exploit this vulnerability through the following steps:

  1. Send any RPC request with an invalid or missing signature to the RustFS server
  2. The server processes the request and fails signature verification
  3. The error logging branch executes, writing the HMAC secret and expected signature to logs
  4. The attacker gains access to logs through various means (insider access, log aggregation systems, misconfigured permissions, or another vulnerability)
  5. Using the extracted HMAC secret, the attacker can generate valid signatures for any RPC or admin request
  6. The attacker can now execute privileged operations on the RustFS cluster
rust
// Vulnerable code in http_auth.rs (before patch)
// The error logging exposed the HMAC secret and expected signature
if signature != expected_signature {
    error!(
        "verify_rpc_signature: Invalid signature: secret {}, url {}, method {}, timestamp {}, signature {}, expected_signature {}",
        secret, url, method, timestamp, signature, expected_signature
    );
    return Err(std::io::Error::other("Invalid signature"));
}

Source: GitHub Code Review

Detection Methods for CVE-2026-22782

Indicators of Compromise

  • Log entries containing verify_rpc_signature: Invalid signature: followed by secret values
  • Unexpected or unauthorized RPC requests with valid signatures from unknown sources
  • Sudden increase in failed authentication attempts against RustFS endpoints

Detection Strategies

  • Review application logs for entries containing HMAC secrets or signature values
  • Monitor for unusual admin or RPC operations that may indicate compromised credentials
  • Implement log auditing to detect if sensitive log files have been accessed by unauthorized users

Monitoring Recommendations

  • Enable audit logging for all access to RustFS log files and directories
  • Deploy SIEM rules to alert on log entries containing potential secret patterns
  • Monitor network traffic for RPC requests originating from unexpected IP addresses

How to Mitigate CVE-2026-22782

Immediate Actions Required

  • Upgrade RustFS to version 1.0.0-alpha.80 or later immediately
  • Rotate all HMAC shared secrets used by the RustFS cluster
  • Audit existing logs for exposed secrets and purge or secure affected log files
  • Review log access permissions and restrict to essential personnel only

Patch Information

The vulnerability is fixed in RustFS version 1.0.0-alpha.80. The patch modifies the logging behavior to only display obfuscated signature information (first and last character plus length) rather than the full secret and signature values. This allows debugging while preventing secret exposure.

rust
// Patched code - secrets are no longer logged
if signature != expected_signature {
    error!(
        "verify_rpc_signature: Invalid signature: url {}, method {}, timestamp {}, signature {}, expected_signature: {}***{}|{}",
        url,
        method,
        timestamp,
        signature,
        expected_signature.chars().next().unwrap_or('*'),
        expected_signature.chars().last().unwrap_or('*'),
        expected_signature.len()
    );
    return Err(std::io::Error::other("Invalid signature"));
}

Source: GitHub Commit Changes

Workarounds

  • If immediate patching is not possible, configure log rotation to minimize exposure window and restrict log access
  • Implement network segmentation to limit access to RustFS RPC endpoints
  • Deploy a reverse proxy or WAF to filter and rate-limit requests to RPC endpoints
  • Redirect application logs to a secure, access-controlled logging system with encryption at rest
bash
# Configuration example - Restrict log file permissions
chmod 600 /var/log/rustfs/*.log
chown rustfs:rustfs /var/log/rustfs/*.log

# Rotate logs frequently to minimize exposure window
logrotate -f /etc/logrotate.d/rustfs

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRustfs

  • SeverityLOW

  • CVSS Score2.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:P/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-532
  • Technical References
  • GitHub Code Review

  • GitHub Commit Changes

  • GitHub Security Advisory GHSA-333v-68xh-8mmq
  • Related CVEs
  • CVE-2026-24762: RustFS Information Disclosure Vulnerability

  • CVE-2026-27607: Rustfs Auth Bypass Vulnerability

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

  • CVE-2026-21862: RustFS 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