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

CVE-2025-67601: Rancher Manager Information Disclosure Bug

CVE-2025-67601 is an information disclosure vulnerability in Rancher Manager affecting CLI authentication with self-signed certificates. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 27, 2026

CVE-2025-67601 Overview

A certificate validation bypass vulnerability has been identified in Rancher Manager that affects the Rancher CLI authentication process. When using self-signed CA certificates and passing the -skip-verify flag to the Rancher CLI login command without also passing the --cacert flag, the CLI attempts to fetch CA certificates stored in Rancher's cacerts setting over an unverified connection. This creates a potential man-in-the-middle attack vector where an attacker could intercept the certificate retrieval and inject malicious certificates.

Critical Impact

This certificate validation bypass vulnerability could enable attackers to perform man-in-the-middle attacks against Rancher CLI users, potentially compromising authentication credentials and cluster access.

Affected Products

  • Rancher Manager (specific versions to be confirmed via vendor advisory)
  • Rancher CLI

Discovery Timeline

  • 2026-02-25 - CVE CVE-2025-67601 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2025-67601

Vulnerability Analysis

This vulnerability is classified under CWE-295 (Improper Certificate Validation), which represents a fundamental flaw in the TLS/SSL certificate verification process. The issue arises from a logic error in how the Rancher CLI handles certificate verification when users specify the -skip-verify flag without providing an explicit CA certificate via the --cacert flag.

Under normal circumstances, when a user skips certificate verification, the CLI should either refuse to proceed or use a completely insecure connection mode. However, the vulnerable implementation attempts to fetch CA certificates from the Rancher server's cacerts setting to establish trust. This creates a circular trust problem: the CLI is trying to establish a secure connection by fetching certificates over an unverified channel, which defeats the purpose of certificate validation entirely.

Root Cause

The root cause lies in the Rancher CLI's certificate handling logic. When the -skip-verify flag is passed without a corresponding --cacert parameter, the CLI enters a fallback code path that attempts to retrieve CA certificates from the Rancher Manager instance. Since no certificate verification is being performed at this stage, an attacker positioned between the client and server could intercept this request and provide their own malicious CA certificate, which the CLI would then trust for subsequent authenticated communications.

Attack Vector

The attack requires network-level access to intercept communications between the Rancher CLI client and the Rancher Manager server. An attacker could exploit this vulnerability by:

  1. Positioning themselves on the network path between a CLI user and the Rancher server (e.g., through ARP spoofing, DNS hijacking, or compromised network infrastructure)
  2. Intercepting the CLI's request to fetch CA certificates from the cacerts endpoint
  3. Responding with a malicious CA certificate controlled by the attacker
  4. Using the injected certificate to intercept and potentially modify all subsequent authenticated traffic

This attack is particularly dangerous in environments where users routinely use the -skip-verify flag for convenience when working with self-signed certificates, which is common in development and testing environments that may have access to production resources.

Detection Methods for CVE-2025-67601

Indicators of Compromise

  • Unusual SSL/TLS certificate warnings or errors during Rancher CLI operations
  • Unexpected certificate changes in the Rancher cacerts configuration
  • Network traffic anomalies indicating potential man-in-the-middle positioning
  • Login failures followed by successful authentications from the same user in short succession

Detection Strategies

  • Monitor network traffic for unencrypted or improperly verified connections to Rancher Manager endpoints
  • Implement certificate pinning monitoring to detect unexpected certificate changes
  • Review Rancher CLI usage logs for instances of -skip-verify flag usage without --cacert
  • Deploy network intrusion detection systems to identify ARP spoofing or DNS hijacking attempts

Monitoring Recommendations

  • Enable verbose logging on Rancher Manager to track CLI authentication attempts
  • Implement alerting for certificate-related configuration changes in Rancher
  • Monitor for multiple authentication attempts from single users that may indicate credential replay
  • Review network logs for suspicious traffic patterns between CLI clients and Rancher Manager

How to Mitigate CVE-2025-67601

Immediate Actions Required

  • Always use the --cacert flag with the appropriate CA certificate when using the Rancher CLI with self-signed certificates
  • Avoid using the -skip-verify flag in production environments
  • Review CLI usage patterns and update automation scripts to include proper certificate validation
  • Consider implementing network-level security controls to prevent man-in-the-middle attacks

Patch Information

A security advisory has been published for this vulnerability. Review the GitHub Rancher Security Advisory for specific patch information and updated versions. Additional tracking is available through the SUSE Bugzilla.

Workarounds

  • Always specify the --cacert flag with a valid CA certificate when using the -skip-verify option
  • Use trusted CA-signed certificates instead of self-signed certificates where possible
  • Implement network segmentation to isolate Rancher management traffic
  • Use VPN or other encrypted tunnels when accessing Rancher from untrusted networks
bash
# Secure Rancher CLI login with proper certificate validation
rancher login https://rancher.example.com --token your-token --cacert /path/to/ca-certificate.pem

# If self-signed certificates are required, always include both flags
rancher login https://rancher.example.com --token your-token --cacert /path/to/ca-certificate.pem

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRancher

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-295
  • Technical References
  • SUSE Bugzilla CVE-2025-67601

  • GitHub Rancher Security Advisory
  • Related CVEs
  • CVE-2024-22030: Rancher Information Disclosure Flaw

  • CVE-2024-52281: SUSE Rancher Stored XSS Vulnerability

  • CVE-2025-23388: SUSE Rancher Buffer Overflow Vulnerability

  • CVE-2025-23391: SUSE Rancher Privilege Escalation Flaw
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