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

CVE-2026-32729: Runtipi Auth Bypass Vulnerability

CVE-2026-32729 is an authentication bypass flaw in Runtipi that allows attackers to brute-force TOTP codes and bypass two-factor authentication. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32729 Overview

CVE-2026-32729 is a critical authentication bypass vulnerability in Runtipi, a personal homeserver orchestrator. The vulnerability exists in the /api/auth/verify-totp endpoint, which fails to enforce rate limiting, attempt counting, or account lockout mechanisms. This security flaw allows attackers who have obtained a user's valid credentials to brute-force the 6-digit TOTP code and completely bypass two-factor authentication protection.

Critical Impact

An attacker with compromised credentials can bypass two-factor authentication by brute-forcing all 1,000,000 possible TOTP codes within approximately 33 minutes, gaining full unauthorized access to user accounts.

Affected Products

  • Runtipi versions prior to 4.8.1
  • Runtipi homeserver installations with TOTP two-factor authentication enabled
  • Self-hosted Runtipi instances accessible over the network

Discovery Timeline

  • 2026-03-16 - CVE CVE-2026-32729 published to NVD
  • 2026-03-17 - Last updated in NVD database

Technical Details for CVE-2026-32729

Vulnerability Analysis

This vulnerability represents a classic improper restriction of excessive authentication attempts (CWE-307). The Runtipi application's TOTP verification endpoint lacks fundamental security controls that are essential for protecting authentication mechanisms. Without rate limiting or lockout mechanisms, the endpoint becomes susceptible to automated brute-force attacks.

The TOTP verification session persists for 24 hours based on the default cache TTL configuration. This extended window provides attackers with ample time to systematically enumerate the entire keyspace of possible TOTP codes. Given that TOTP codes are 6-digit numeric values (ranging from 000000 to 999999), there are exactly 1,000,000 possible combinations to test.

Root Cause

The root cause of this vulnerability is the absence of security controls on the /api/auth/verify-totp endpoint. Specifically, the endpoint lacks:

  1. Rate limiting - No throttling mechanism exists to slow down repeated verification attempts
  2. Attempt counting - The system does not track failed verification attempts per user or session
  3. Account lockout - No temporary or permanent lockout is triggered after multiple failed attempts
  4. Session invalidation - The TOTP verification session remains valid for an excessive 24-hour period

These missing controls combine to create a scenario where automated attacks can proceed unimpeded.

Attack Vector

The attack requires network access and assumes the attacker has already obtained valid user credentials through methods such as phishing, credential stuffing, or data breaches. Once credentials are obtained, the attacker targets the TOTP verification step.

The attack proceeds as follows:

  1. The attacker obtains valid credentials for a target account
  2. The attacker initiates a login attempt, triggering the TOTP verification step
  3. Automated tools send requests to /api/auth/verify-totp cycling through all possible 6-digit codes
  4. At approximately 500 requests per second, the entire keyspace of 1,000,000 codes can be exhausted in roughly 33 minutes
  5. Once the correct code is submitted, the attacker gains full access to the account, bypassing 2FA entirely

The exploitation mechanism involves iterating through TOTP codes from 000000 to 999999 against the unprotected verification endpoint. Due to the lack of rate limiting, an attacker can submit hundreds of verification requests per second until the correct code is found. For detailed technical information, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-32729

Indicators of Compromise

  • Unusually high volume of requests to /api/auth/verify-totp from a single IP address or session
  • Sequential or near-sequential TOTP code submissions indicating automated enumeration
  • Successful authentication following a large number of failed TOTP verification attempts
  • Authentication events from geographic locations inconsistent with legitimate user patterns

Detection Strategies

  • Implement monitoring for high-frequency requests to the TOTP verification endpoint (threshold: >10 requests per minute per session)
  • Alert on authentication anomalies where successful login follows multiple failed TOTP attempts
  • Correlate login attempts with known credential breach databases to identify at-risk accounts
  • Monitor for automated tool signatures in User-Agent strings and request patterns

Monitoring Recommendations

  • Enable verbose logging on authentication endpoints to capture all TOTP verification attempts
  • Configure real-time alerting for brute-force attack patterns against authentication services
  • Implement network-level monitoring to detect high-volume request bursts to the Runtipi API
  • Review authentication logs regularly for signs of credential abuse or 2FA bypass attempts

How to Mitigate CVE-2026-32729

Immediate Actions Required

  • Upgrade Runtipi to version 4.8.1 or later immediately to address this vulnerability
  • Audit authentication logs for signs of historical exploitation attempts
  • Force password resets for any accounts showing suspicious TOTP verification patterns
  • Consider temporarily disabling external network access to Runtipi instances until patched

Patch Information

The vulnerability has been fixed in Runtipi version 4.8.1. The patch implements proper rate limiting and security controls on the TOTP verification endpoint. Users should update their Runtipi installations immediately by following the standard upgrade procedure. Full details are available in the GitHub Security Advisory (GHSA-v6gf-frxm-567w).

Workarounds

  • Place a reverse proxy (such as Nginx or Caddy) in front of Runtipi with rate limiting configured for the /api/auth/verify-totp endpoint
  • Implement IP-based access controls to restrict Runtipi access to trusted networks only
  • Deploy a Web Application Firewall (WAF) with brute-force detection capabilities
  • Reduce the TOTP session cache TTL from the default 24 hours to minimize the attack window
bash
# Example Nginx rate limiting configuration for Runtipi
# Add to your Nginx server configuration

# Define rate limiting zone (10 requests per minute per IP)
limit_req_zone $binary_remote_addr zone=totp_limit:10m rate=10r/m;

# Apply rate limiting to TOTP endpoint
location /api/auth/verify-totp {
    limit_req zone=totp_limit burst=5 nodelay;
    limit_req_status 429;
    proxy_pass http://runtipi_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechRuntipi

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.06%

  • 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-307
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-31881: Runtipi Auth Bypass Vulnerability

  • CVE-2026-25116: Runtipi Path Traversal RCE Vulnerability

  • CVE-2026-24129: Runtipi Command Injection 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