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

CVE-2025-46736: Umbraco CMS Information Disclosure Flaw

CVE-2025-46736 is an information disclosure vulnerability in Umbraco CMS that allows attackers to determine account existence through timing analysis. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-46736 Overview

Umbraco CMS, a popular free and open source .NET content management system, contains a user enumeration vulnerability that allows attackers to determine whether an account exists by analyzing the timing of post-login API responses. This timing-based attack vector exposes sensitive information about valid user accounts within the system, which can be leveraged for further attacks such as credential stuffing or targeted brute force attempts.

Critical Impact

Attackers can enumerate valid user accounts through timing analysis of authentication API responses, enabling targeted attacks against confirmed user accounts.

Affected Products

  • Umbraco CMS versions prior to 10.8.10
  • Umbraco CMS versions prior to 13.8.1

Discovery Timeline

  • 2025-05-06 - CVE-2025-46736 published to NVD
  • 2025-09-03 - Last updated in NVD database

Technical Details for CVE-2025-46736

Vulnerability Analysis

This vulnerability falls under CWE-204 (Observable Response Discrepancy), a category of information disclosure where an application provides different responses based on internal state that should remain hidden from users. In the case of Umbraco CMS, the authentication mechanism exhibits measurable timing differences between login attempts for existing versus non-existing accounts.

When a user attempts to authenticate, the system performs different internal operations depending on whether the username exists in the database. For valid usernames, the system may perform additional operations such as password hash retrieval and comparison, while for non-existent usernames, the process terminates earlier. This timing discrepancy, though potentially subtle, can be measured and analyzed by attackers to build a list of valid accounts.

The vulnerability affects the network-accessible authentication endpoints and requires no authentication or special privileges to exploit, making it accessible to any remote attacker with network access to the Umbraco CMS installation.

Root Cause

The root cause lies in the authentication flow's lack of constant-time response handling. The login API does not normalize response times between successful account lookups (even with wrong passwords) and failed account lookups, creating an observable timing oracle. The security patch introduces modifications to the SecuritySettings.cs configuration to address this behavior and ensure consistent response timing regardless of account existence.

Attack Vector

An attacker can exploit this vulnerability by sending multiple authentication requests to the Umbraco CMS login endpoint while precisely measuring response times. By comparing the response latencies for different usernames, the attacker can distinguish between valid and invalid accounts. This technique is typically automated using scripts that:

  1. Send login requests with candidate usernames
  2. Measure response times with high precision
  3. Perform statistical analysis to identify timing patterns
  4. Classify accounts as existing or non-existing based on response time distributions

The patch commits show modifications to the security configuration settings, adding System.ComponentModel.DataAnnotations to implement proper validation and timing normalization:

csharp
// See LICENSE for more details.

using System.ComponentModel;
+using System.ComponentModel.DataAnnotations;

namespace Umbraco.Cms.Core.Configuration.Models;

Source: GitHub Commit 14fbd206

Detection Methods for CVE-2025-46736

Indicators of Compromise

  • Unusually high volume of failed login attempts from single IP addresses or ranges
  • Sequential or automated patterns in username submissions during authentication attempts
  • Rapid succession of login requests testing different usernames with identical or dummy passwords
  • Abnormal traffic patterns targeting the Umbraco backoffice login endpoints

Detection Strategies

  • Implement rate limiting detection on authentication endpoints to identify enumeration attempts
  • Monitor for patterns of failed authentications where usernames vary but passwords remain constant
  • Deploy web application firewall (WAF) rules to detect and block timing attack patterns
  • Analyze authentication logs for sequential username testing patterns indicative of enumeration tools

Monitoring Recommendations

  • Enable detailed logging for all authentication attempts including source IP, timestamp, and username
  • Set up alerting thresholds for failed login attempts exceeding normal baseline activity
  • Monitor response times on authentication endpoints for anomalous measurement activity
  • Implement SentinelOne Singularity™ platform for real-time detection of reconnaissance activities against web applications

How to Mitigate CVE-2025-46736

Immediate Actions Required

  • Upgrade Umbraco CMS to version 10.8.10 or later for the 10.x branch
  • Upgrade Umbraco CMS to version 13.8.1 or later for the 13.x branch
  • Review authentication logs for signs of previous enumeration attempts
  • Consider implementing additional rate limiting on login endpoints as defense in depth

Patch Information

Umbraco has released security patches that address this timing attack vulnerability. The fixes are available in the following versions:

  • Version 10.8.10 - Patch for the 10.x release branch
  • Version 13.8.1 - Patch for the 13.x release branch

The patches can be obtained through the official GitHub security advisory. Additional commit details are available at commit 14fbd206 and commit 34709be6.

Workarounds

  • No known workarounds are available for this vulnerability according to the vendor advisory
  • Implement aggressive rate limiting on authentication endpoints as a partial mitigation
  • Deploy a reverse proxy or WAF with timing attack detection capabilities
  • Monitor and block IP addresses exhibiting enumeration behavior patterns
bash
# Update Umbraco CMS using .NET CLI
dotnet add package Umbraco.Cms --version 13.8.1

# Verify installed version
dotnet list package | grep Umbraco

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechUmbraco

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-204
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-31832: Umbraco CMS Auth Bypass Vulnerability

  • CVE-2026-31834: Umbraco CMS Privilege Escalation Flaw

  • CVE-2026-31833: Umbraco ASP.NET CMS XSS Vulnerability

  • CVE-2026-27449: Umbraco Engage Auth Bypass 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