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

CVE-2025-10470: Magic Link Authentication DoS Vulnerability

CVE-2025-10470 is a DoS vulnerability in Magic Link authentication that allows attackers to exhaust memory through repeated invalid requests. This article covers the technical details, affected systems, and mitigation strategies.

Published: May 18, 2026

CVE-2025-10470 Overview

CVE-2025-10470 is a resource exhaustion vulnerability [CWE-400] affecting the Magic Link authentication flow in WSO2 products. The flow accepts multiple invalid authentication requests without adequate rate limiting or resource control. Repeated invalid requests cause uncontrolled memory usage growth in the authentication service.

An unauthenticated attacker can trigger a denial-of-service condition over the network. The impact is limited to deployments that enable the Magic Link authenticator. Service unavailability persists until memory pressure is relieved or the service restarts.

Critical Impact

Unauthenticated attackers can exhaust server memory by submitting repeated invalid Magic Link authentication requests, causing denial of service for affected WSO2 deployments.

Affected Products

  • WSO2 products with the Magic Link authenticator enabled (see WSO2 Security Advisory WSO2-2025-4469 for the version matrix)

Discovery Timeline

  • 2026-05-11 - CVE-2025-10470 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2025-10470

Vulnerability Analysis

The Magic Link authenticator issues one-time authentication links to users for passwordless login. The flow processes inbound authentication requests and allocates server-side state for each attempt. The vulnerable implementation does not enforce rate limits or bound the resources allocated per request.

Each invalid authentication attempt increases memory consumption on the authentication node. Because the allocated state is not promptly reclaimed, repeated requests cause heap growth until the Java Virtual Machine exhausts available memory. The result is service degradation followed by complete unavailability of authentication services.

The vulnerability maps to [CWE-400] Uncontrolled Resource Consumption. Exploitation requires only network reachability to the Magic Link endpoint and no prior authentication or user interaction.

Root Cause

The authentication handler lacks two controls. First, it does not throttle the rate at which a single source or aggregate set of sources can submit Magic Link requests. Second, it does not cap memory allocated for in-flight or pending authentication contexts. The combination allows an attacker to scale memory pressure linearly with request volume.

Attack Vector

An attacker sends a high volume of invalid Magic Link authentication requests to the public authentication endpoint. Each request causes the server to allocate state without timely cleanup. Sustained traffic exhausts the heap and triggers garbage collection thrashing, then out-of-memory failures. The attack requires no credentials, no user interaction, and no privileged network position.

No verified public proof-of-concept code is available. Refer to the WSO2 Security Advisory WSO2-2025-4469 for vendor-supplied technical details.

Detection Methods for CVE-2025-10470

Indicators of Compromise

  • Sustained spikes in requests to Magic Link authentication endpoints from a small number of source IPs or distributed botnets
  • Elevated JVM heap usage and prolonged garbage collection pauses on identity server nodes
  • Authentication service log entries showing repeated invalid Magic Link attempts for nonexistent or unrelated user identifiers
  • Out-of-memory errors or service restarts on WSO2 Identity Server processes

Detection Strategies

  • Baseline normal request rates to Magic Link endpoints and alert on deviations exceeding two standard deviations
  • Correlate authentication failure volume with JVM memory metrics from the identity server
  • Monitor for repeated invalid authentication attempts against the same or enumerated user identifiers from common sources
  • Inspect web server and load balancer logs for bursts of POST requests to Magic Link initiation URLs

Monitoring Recommendations

  • Forward WSO2 Identity Server audit logs and JVM metrics to a centralized SIEM for correlation
  • Track heap utilization, full garbage collection frequency, and thread counts as leading indicators of resource exhaustion
  • Configure alerts for HTTP 5xx responses from authentication endpoints, which often precede full service failure

How to Mitigate CVE-2025-10470

Immediate Actions Required

  • Apply the patched WSO2 product versions listed in WSO2 Security Advisory WSO2-2025-4469
  • Disable the Magic Link authenticator in deployments that do not require it until patches are applied
  • Place a rate-limiting reverse proxy or web application firewall in front of the authentication endpoints
  • Restrict network exposure of authentication endpoints to expected client ranges where feasible

Patch Information

WSO2 has issued fixed versions through the security advisory WSO2-2025-4469. Administrators should consult the advisory for the exact patched releases and WUM updates that correspond to their product and deployment topology. Apply updates in non-production environments first and validate authentication flows before promoting to production.

Workarounds

  • Enforce per-source-IP and per-user request rate limits on Magic Link endpoints at the network or proxy layer
  • Reduce JVM heap pressure by tuning session and authentication context timeouts to release resources more aggressively
  • Temporarily disable Magic Link authentication and require an alternative authenticator until the patch is applied
  • Deploy WAF rules that block clients submitting abnormal volumes of authentication initiation requests

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score8.6

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • WSO2 Security Advisory WSO2-2025-4469
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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