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

CVE-2026-44184: Cleanuparr CSRF Vulnerability

CVE-2026-44184 is a CSRF flaw in Cleanuparr that exploits CORS misconfigurations to expose admin API keys when DisableAuthForLocalAddresses is enabled. This post covers the technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-44184 Overview

Cleanuparr is a tool for automating the cleanup of unwanted or blocked files in Sonarr, Radarr, and supported download clients like qBittorrent. Versions prior to 2.9.10 contain an origin validation flaw [CWE-346] in the global Cross-Origin Resource Sharing (CORS) policy. The application reflects every request Origin header and combines this with AllowCredentials(). When DisableAuthForLocalAddresses is enabled, the API authenticates requests by source IP through the TrustedNetworkAuthenticationHandler. Any website an administrator visits from a trusted IP can read authenticated API responses cross-origin, including the permanent API key. The issue is fixed in version 2.9.10.

Critical Impact

A malicious webpage visited by an authenticated user on a trusted network can extract the administrator's permanent API key and gain full control of the Cleanuparr instance.

Affected Products

  • Cleanuparr versions prior to 2.9.10
  • Deployments with DisableAuthForLocalAddresses enabled
  • Instances reachable from administrator browsers on trusted networks

Discovery Timeline

  • 2026-05-12 - CVE-2026-44184 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44184

Vulnerability Analysis

The vulnerability stems from two compounding misconfigurations in Cleanuparr's HTTP layer. The global CORS policy reflects whatever value the browser supplies in the Origin header rather than validating it against an allowlist. The same policy enables credentialed requests through AllowCredentials(), which permits browsers to send cookies and read responses across origins. Modern browsers normally block this combination, but reflective origin policies defeat that protection.

The second flaw lies in TrustedNetworkAuthenticationHandler. When DisableAuthForLocalAddresses is set, the handler treats any request originating from a trusted source IP as authenticated, without requiring a token or session credential. Browsers running on a trusted network therefore make authenticated calls automatically, and the reflected CORS policy lets the calling page read the responses.

Root Cause

The root cause is improper origin validation combined with IP-based authentication. The CORS handler accepts arbitrary origins instead of comparing them to a configured allowlist. The authentication handler trusts network location as proof of identity. Either control alone is weak; together they enable a cross-origin attacker to impersonate the administrator.

Attack Vector

An attacker hosts a malicious page and lures an administrator to visit it from a workstation on a trusted network. The attacker page issues fetch() calls to the Cleanuparr API with credentials: 'include'. The browser attaches no token, but the server authenticates the request by source IP. Cleanuparr returns the response with Access-Control-Allow-Origin set to the attacker's domain and Access-Control-Allow-Credentials: true. The attacker's JavaScript reads sensitive responses, including the permanent API key endpoint, and exfiltrates the key for persistent remote access.

Detection Methods for CVE-2026-44184

Indicators of Compromise

  • Outbound HTTP requests from administrator browsers to unfamiliar domains shortly before unexpected Cleanuparr API activity
  • Cleanuparr access logs showing requests with external Referer or Origin headers reaching authenticated endpoints
  • Unexpected use of the administrator API key from new IP addresses or user agents
  • Configuration entries showing DisableAuthForLocalAddresses set to true in production deployments

Detection Strategies

  • Inspect Cleanuparr access logs for Origin headers that do not match the deployed front-end domain
  • Alert when responses include Access-Control-Allow-Origin values reflecting third-party origins alongside Access-Control-Allow-Credentials: true
  • Correlate API key usage patterns with geolocation or ASN changes to identify key theft

Monitoring Recommendations

  • Forward Cleanuparr application and reverse-proxy logs to a central log platform for query and retention
  • Monitor administrator browser endpoints for connections to newly registered or low-reputation domains
  • Track configuration drift on the DisableAuthForLocalAddresses setting across all Cleanuparr instances

How to Mitigate CVE-2026-44184

Immediate Actions Required

  • Upgrade all Cleanuparr instances to version 2.9.10 or later without delay
  • Rotate every API key issued by affected instances and revoke prior credentials
  • Disable DisableAuthForLocalAddresses until the upgrade is complete and validated
  • Review access logs for evidence of cross-origin authenticated requests during the exposure window

Patch Information

The maintainers released the fix in Cleanuparr 2.9.10. Details are available in the GitHub Security Advisory GHSA-rwpc-36mg-fpvf. Administrators should pull the patched container image or binary and restart the service.

Workarounds

  • Restrict Cleanuparr to a dedicated administrative network segment unreachable from general-purpose workstations
  • Place Cleanuparr behind a reverse proxy that enforces a strict CORS allowlist and strips reflected Origin headers
  • Require token-based authentication for all requests by leaving DisableAuthForLocalAddresses disabled
  • Configure browser-side controls or SameSite enforcement on the reverse proxy to limit cross-site credential attachment
bash
# Reverse-proxy snippet enforcing a strict CORS allowlist (nginx)
map $http_origin $cors_ok {
    default "";
    "https://cleanuparr.internal.example.com" $http_origin;
}

server {
    location /api/ {
        if ($cors_ok = "") { return 403; }
        add_header Access-Control-Allow-Origin $cors_ok always;
        add_header Access-Control-Allow-Credentials "true" always;
        proxy_pass http://cleanuparr_upstream;
    }
}

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

  • Vulnerability Details
  • TypeCSRF

  • Vendor/TechCleanuparr

  • SeverityHIGH

  • CVSS Score8.0

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:A/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-346
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44183: Cleanuparr Auth Bypass Vulnerability

  • CVE-2026-32702: Cleanuparr Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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