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

CVE-2026-44241: Micronaut Framework DoS Vulnerability

CVE-2026-44241 is a denial of service flaw in Micronaut Framework that allows attackers to exhaust heap memory via crafted locale tags. This post explains its technical details, affected versions, impact, and mitigation.

Published: May 17, 2026

CVE-2026-44241 Overview

CVE-2026-44241 affects the Micronaut Framework, a JVM-based full stack Java framework for building modular applications. The flaw exists in TimeConverterRegistrar, which caches DateTimeFormatter instances in an unbounded ConcurrentHashMap keyed on the @Format annotation pattern combined with the HTTP Accept-Language locale. An unauthenticated remote attacker can submit requests with novel BCP 47 locale tags to grow the cache without limit, exhausting heap memory and crashing the JVM. The issue impacts Micronaut Framework versions 4.3.0 through 4.10.21 and is fixed in 4.10.22. The weakness is classified as Uncontrolled Resource Consumption [CWE-400].

Critical Impact

Unauthenticated attackers can crash Micronaut-based applications by triggering memory exhaustion through crafted Accept-Language headers.

Affected Products

  • Micronaut Framework 4.3.0 through 4.10.21
  • Java applications using TimeConverterRegistrar with @Format annotations
  • HTTP endpoints that bind locale-aware date or time parameters

Discovery Timeline

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

Technical Details for CVE-2026-44241

Vulnerability Analysis

The vulnerability is an Uncontrolled Resource Consumption flaw in Micronaut's time conversion logic. TimeConverterRegistrar builds and caches a DateTimeFormatter for each unique combination of format pattern and locale. The cache is a ConcurrentHashMap<String, DateTimeFormatter> with no eviction policy or size bound. Cache keys derive directly from attacker-controlled input in the HTTP Accept-Language header, allowing remote callers to insert entries indefinitely.

Root Cause

The root cause is the use of Locale.forLanguageTag() for cache key derivation without input normalization. The method accepts arbitrary BCP 47 private-use extensions such as en-x-a001, en-x-a002, and similar variants. Each unique tag produces a distinct Locale object and therefore a distinct cache key. The map never evicts entries, so memory grows linearly with request volume.

Attack Vector

An unauthenticated attacker sends HTTP requests to any endpoint that exercises a @Format-annotated date or time parameter. Each request carries a unique Accept-Language value using private-use subtags. The server inserts a new DateTimeFormatter instance into the cache for every distinct tag. Sustained traffic exhausts JVM heap memory, producing OutOfMemoryError conditions and process termination. No authentication, privileges, or user interaction are required.

The vulnerability is described in prose without exploitation code. Refer to the GitHub Security Advisory GHSA-8hjv-92q9-g4xj for additional technical context.

Detection Methods for CVE-2026-44241

Indicators of Compromise

  • HTTP requests containing unusual Accept-Language headers with private-use BCP 47 extensions such as en-x-a001, en-x-a002, or other random subtags
  • High volume of distinct Accept-Language values from a single source or small set of source IPs
  • Java Virtual Machine (JVM) heap utilization trending upward without corresponding business traffic growth
  • Application logs reporting java.lang.OutOfMemoryError: Java heap space followed by service restarts

Detection Strategies

  • Inspect web access logs for Accept-Language header entropy and flag clients sending many unique locale tags within short time windows
  • Monitor JVM heap occupancy and full garbage collection frequency on Micronaut applications and alert on sustained growth
  • Correlate HTTP request rates with heap metrics to identify low-bandwidth attacks producing disproportionate memory pressure

Monitoring Recommendations

  • Export JVM metrics through Micrometer or JMX and track jvm.memory.used against baselines
  • Enable structured access logging that captures the Accept-Language header for forensic review
  • Configure web application firewall (WAF) rules to count distinct Accept-Language values per source and alert on anomalies

How to Mitigate CVE-2026-44241

Immediate Actions Required

  • Upgrade Micronaut Framework to version 4.10.22 or later across all affected services
  • Inventory applications using @Format annotations and verify they consume the patched dependency
  • Restart JVM processes after upgrade to clear any cache state accumulated before patching

Patch Information

The maintainers fixed CVE-2026-44241 in Micronaut Framework 4.10.22. The release notes are available at the GitHub Release v4.10.22 page. Detailed advisory information is published in the GitHub Security Advisory GHSA-8hjv-92q9-g4xj.

Workarounds

  • Strip or normalize the Accept-Language header at an upstream reverse proxy before requests reach Micronaut
  • Reject Accept-Language values containing private-use extensions (-x- subtags) at the WAF layer
  • Apply per-source rate limiting on endpoints that accept locale-aware date or time parameters
bash
# Example nginx configuration to restrict Accept-Language values
map $http_accept_language $blocked_locale {
    default 0;
    "~*-x-"  1;
}

server {
    if ($blocked_locale) {
        return 400;
    }
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechMicronaut

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Release v4.10.22

  • GitHub Security Advisory GHSA-8hjv-92q9-g4xj
  • Related CVEs
  • CVE-2026-44242: Micronaut Framework DoS Vulnerability

  • CVE-2026-33012: Micronaut Framework DoS Vulnerability

  • CVE-2026-33013: Micronaut Framework DoS 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