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
    • 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-32933

CVE-2026-32933: AutoMapper DoS Vulnerability

CVE-2026-32933 is a Denial of Service flaw in AutoMapper for .NET that allows attackers to crash applications via deeply nested objects. This post covers technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-32933 Overview

AutoMapper, a widely-used convention-based object-object mapper in .NET, contains a Denial of Service (DoS) vulnerability in versions prior to 15.1.1 and 16.1.1. The library's mapping functionality uses recursive method calls without enforcing a default maximum depth limit when processing deeply nested object graphs. This architectural flaw allows an attacker to craft a specially designed object graph that exhausts the thread's stack memory, triggering a StackOverflowException and causing the entire application process to terminate.

Critical Impact

Applications using vulnerable AutoMapper versions can be completely crashed by an attacker supplying maliciously crafted deeply nested input objects, resulting in service unavailability.

Affected Products

  • AutoMapper versions prior to 15.1.1
  • AutoMapper versions 16.x prior to 16.1.1
  • .NET applications utilizing affected AutoMapper library versions

Discovery Timeline

  • 2026-03-20 - CVE-2026-32933 published to NVD
  • 2026-03-20 - Last updated in NVD database

Technical Details for CVE-2026-32933

Vulnerability Analysis

This vulnerability stems from uncontrolled recursion (CWE-674) within the AutoMapper library's object mapping engine. When the library processes object graphs—particularly those with circular references or deeply nested hierarchies—it utilizes recursive method calls to traverse and map each level of the object structure. Without a configurable or default maximum depth limit, the recursion can continue indefinitely until the thread's stack memory is exhausted.

The attack surface is network-accessible, requiring no authentication or user interaction. An attacker can exploit this vulnerability by providing specially crafted input data to any API endpoint or service that uses AutoMapper to process incoming objects. The impact is availability-focused, with no direct confidentiality or integrity implications, but the consequence—complete process termination—makes this a significant risk for production systems.

Root Cause

The root cause is the absence of a default maximum recursion depth limit in AutoMapper's mapping engine. When mapping operations encounter deeply nested or circular object structures, the library continues to allocate stack frames for each recursive call without bounds checking. The .NET runtime's stack has a finite size (typically 1MB for regular threads), and when this limit is exceeded, a StackOverflowException is thrown. Unlike most exceptions in .NET, StackOverflowException cannot be caught and results in immediate process termination.

Attack Vector

The attack vector is network-based, allowing remote exploitation without requiring authentication or privileges. An attacker can target any application endpoint that accepts user-controlled data which is subsequently processed through AutoMapper's mapping functionality.

The vulnerability is exploited by constructing an object graph with extreme nesting depth. This could be achieved through:

  1. JSON or XML payloads with thousands of nested child objects
  2. Objects with circular references that cause infinite recursion
  3. Data structures specifically designed to maximize recursion depth per stack frame

When such a payload is deserialized and passed to AutoMapper for mapping operations, the recursive traversal exhausts available stack memory. Unlike heap exhaustion attacks that may be recoverable, stack overflow causes unrecoverable process termination, making this a highly effective denial of service mechanism.

For technical implementation details, refer to the GitHub Security Advisory GHSA-rvv3-g6hj-g44x and the associated security commit.

Detection Methods for CVE-2026-32933

Indicators of Compromise

  • Application process crashes with StackOverflowException in event logs or crash dumps
  • Repeated application restarts in containerized or service-managed environments
  • Crash dump analysis showing deep call stacks within AutoMapper namespace methods
  • Increased frequency of process terminations correlating with specific API endpoint requests

Detection Strategies

  • Monitor application crash logs for StackOverflowException events associated with AutoMapper assemblies
  • Implement request payload size and nesting depth validation at API gateway or middleware layer
  • Use software composition analysis (SCA) tools to identify vulnerable AutoMapper versions in dependencies
  • Configure application performance monitoring (APM) to alert on recursive call depth anomalies

Monitoring Recommendations

  • Enable Windows Event Log or Linux syslog monitoring for application crash events
  • Implement health check endpoints with alerting for repeated application unavailability
  • Monitor container orchestration platforms for excessive pod restarts or crash loops
  • Track NuGet package versions across deployments to identify instances running vulnerable AutoMapper versions

How to Mitigate CVE-2026-32933

Immediate Actions Required

  • Upgrade AutoMapper to version 15.1.1 or 16.1.1 depending on your current major version
  • Audit all application dependencies to identify AutoMapper usage and version
  • Implement input validation to reject payloads with excessive nesting depth before mapping operations
  • Consider implementing request timeout and resource limits at the application or container level

Patch Information

The vulnerability has been addressed in AutoMapper versions 15.1.1 and 16.1.1. The fix introduces proper recursion depth limiting to prevent stack exhaustion during object graph traversal.

Security updates are available through the following channels:

  • AutoMapper v15.1.1 Release
  • AutoMapper v16.1.1 Release
  • Security Commit 0afaf1e

Workarounds

  • Implement middleware or API gateway rules to validate and limit JSON/XML nesting depth in incoming requests
  • Add input sanitization logic to reject objects exceeding a reasonable depth threshold before passing to AutoMapper
  • Consider isolating AutoMapper operations in separate worker processes to limit blast radius of potential crashes
  • Implement rate limiting on endpoints that process complex object mappings
bash
# Update AutoMapper via .NET CLI
dotnet add package AutoMapper --version 15.1.1
# Or for 16.x branch
dotnet add package AutoMapper --version 16.1.1

# Verify installed version
dotnet list package | grep AutoMapper

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAutomapper

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • 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-674
  • Technical References
  • GitHub Commit Notification

  • GitHub Release v15.1.1

  • GitHub Release v16.1.1

  • GitHub Security Advisory GHSA-rvv3-g6hj-g44x
  • 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