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
    • 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-2026-32702

CVE-2026-32702: Cleanuparr Auth Bypass Vulnerability

CVE-2026-32702 is an authentication bypass flaw in Cleanuparr that allows attackers to enumerate valid usernames through timing attacks. This article covers the technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32702 Overview

CVE-2026-32702 is a timing attack vulnerability in Cleanuparr, a tool designed for automating the cleanup of unwanted or blocked files in Sonarr, Radarr, and supported download clients like qBittorrent. The vulnerability exists in the /api/auth/login endpoint, which contains a logic flaw that allows unauthenticated remote attackers to enumerate valid usernames by measuring the application's response time differences.

Critical Impact

Attackers can remotely enumerate valid usernames without authentication, potentially facilitating targeted brute-force attacks or social engineering campaigns against confirmed user accounts.

Affected Products

  • Cleanuparr versions 2.7.0 through 2.8.0
  • Cleanuparr_project Cleanuparr

Discovery Timeline

  • 2026-03-16 - CVE CVE-2026-32702 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-32702

Vulnerability Analysis

This vulnerability falls under CWE-208 (Observable Timing Discrepancy), a classic side-channel attack vector. The authentication mechanism in Cleanuparr introduces a measurable timing differential that reveals whether a submitted username exists in the system. The flaw stems from the application's handling of the password verification process, where the computationally expensive hashing function is only invoked when a valid username is provided.

When an attacker submits login requests to the /api/auth/login endpoint, they can observe that requests with valid usernames take noticeably longer to process compared to requests with invalid usernames. This timing difference occurs because the VerifyPassword function—which contains the resource-intensive hashing operation—is only executed after confirming the username exists. Short-circuit evaluation before the hashing function creates this exploitable timing discrepancy.

Root Cause

The root cause of this vulnerability is improper implementation of the authentication flow in the /api/auth/login endpoint. The application performs username validation before invoking the VerifyPassword function, which contains the time-consuming password hashing operation. This sequential approach with early termination (short-circuit logic) for invalid usernames creates an observable timing side channel.

A secure implementation would ensure constant-time authentication responses regardless of username validity, typically by always performing the password hashing operation or using constant-time comparison functions throughout the authentication process.

Attack Vector

This vulnerability is exploitable remotely over the network without requiring any authentication or user interaction. An attacker can craft automated requests to the /api/auth/login endpoint, systematically testing potential usernames while measuring response times. By analyzing the statistical differences in response latency, attackers can reliably distinguish between valid and invalid usernames.

The attack can be performed using simple scripting tools that measure HTTP response times. Once valid usernames are identified, attackers can focus brute-force or credential stuffing attacks on confirmed accounts, significantly improving attack efficiency and reducing detection risk.

Detection Methods for CVE-2026-32702

Indicators of Compromise

  • High volume of failed login attempts from single IP addresses with varying usernames
  • Rapid sequential requests to /api/auth/login endpoint with minimal time between requests
  • Pattern of requests testing alphabetically or dictionary-based username combinations
  • Network traffic analysis showing consistent request patterns to authentication endpoints

Detection Strategies

  • Implement rate limiting monitoring on the /api/auth/login endpoint to identify enumeration attempts
  • Deploy web application firewalls (WAF) with rules to detect timing-based enumeration patterns
  • Monitor authentication logs for anomalous login attempt patterns indicating systematic username testing
  • Use SIEM correlation rules to alert on multiple failed authentications with different usernames from the same source

Monitoring Recommendations

  • Enable detailed logging for all authentication endpoint requests including response times
  • Configure alerts for authentication failure rates exceeding baseline thresholds
  • Monitor network traffic for automated scanning tool signatures targeting authentication endpoints
  • Implement account lockout monitoring to detect enumeration attempts transitioning to brute-force attacks

How to Mitigate CVE-2026-32702

Immediate Actions Required

  • Upgrade Cleanuparr to version 2.8.1 or later immediately
  • Implement network-level rate limiting on the /api/auth/login endpoint as a temporary measure
  • Review authentication logs for evidence of prior exploitation attempts
  • Consider implementing additional authentication controls such as multi-factor authentication

Patch Information

The vulnerability has been fixed in Cleanuparr version 2.8.1. Users running versions 2.7.0 through 2.8.0 should upgrade immediately. The fix addresses the timing discrepancy by ensuring constant-time authentication responses regardless of username validity. For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Place Cleanuparr behind a reverse proxy with aggressive rate limiting on the authentication endpoint
  • Restrict network access to Cleanuparr to trusted IP ranges only using firewall rules
  • Implement CAPTCHA or similar challenge-response mechanisms before authentication attempts
  • Deploy network intrusion detection systems to identify and block automated enumeration attempts
bash
# Example nginx rate limiting configuration for /api/auth/login
limit_req_zone $binary_remote_addr zone=auth_limit:10m rate=5r/m;

location /api/auth/login {
    limit_req zone=auth_limit burst=3 nodelay;
    limit_req_status 429;
    proxy_pass http://cleanuparr_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/TechCleanuparr

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/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-208
  • Vendor Resources
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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