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

CVE-2025-3857: Amazon.IonDotnet DOS Vulnerability

CVE-2025-3857 is a denial of service vulnerability in Amazon.IonDotnet that triggers an infinite loop when processing malformed binary Ion data. This article covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-3857 Overview

CVE-2025-3857 is a denial of service vulnerability affecting the Amazon.IonDotnet library, specifically within the RawBinaryReader class used for parsing binary Ion data. When reading binary Ion data through this class, the library fails to properly check the number of bytes read from the underlying stream during deserialization. If malformed or truncated Ion data is processed, this oversight triggers an infinite loop condition that could result in a denial of service attack against applications using the vulnerable library.

Critical Impact

This vulnerability allows remote attackers to cause denial of service through malformed binary Ion data, potentially rendering applications and services unavailable without requiring authentication.

Affected Products

  • Amazon.IonDotnet versions prior to 1.3.1
  • Applications using RawBinaryReader class for binary Ion parsing
  • Any forked or derivative code based on vulnerable Amazon.IonDotnet versions

Discovery Timeline

  • 2025-04-21 - CVE CVE-2025-3857 published to NVD
  • 2025-10-14 - Last updated in NVD database

Technical Details for CVE-2025-3857

Vulnerability Analysis

This vulnerability is classified under CWE-502 (Deserialization of Untrusted Data). The core issue lies in the RawBinaryReader class's handling of binary Ion format deserialization. During the parsing process, the reader does not validate the number of bytes consumed from the input stream against expected values. This lack of validation becomes problematic when processing malformed or intentionally truncated Ion binary data.

When an attacker supplies crafted Ion data that indicates a certain data length but provides fewer bytes than specified, the reader enters a state where it continuously attempts to read data that doesn't exist, creating an infinite loop. This condition persists indefinitely, consuming CPU resources and preventing the application from processing other requests.

The vulnerability can be exploited remotely over a network connection by any attacker who can supply Ion data to an affected application. No authentication or user interaction is required to trigger the condition, making it particularly dangerous for public-facing services that parse user-supplied Ion data.

Root Cause

The root cause is insufficient input validation in the RawBinaryReader class during binary Ion format deserialization. The reader trusts length fields within the Ion binary format without verifying that the specified number of bytes are actually available in the input stream. When the actual data is shorter than indicated by these length fields, the reader fails to detect the end-of-stream condition and continues attempting to read indefinitely.

Attack Vector

The attack vector is network-based, requiring an attacker to supply maliciously crafted binary Ion data to an application using Amazon.IonDotnet. The attack does not require any privileges or user interaction. An attacker can construct truncated or malformed Ion binary data where the header indicates a specific payload size, but the actual data is shorter than specified. When this data is processed by the RawBinaryReader, the infinite loop is triggered.

Attack scenarios include:

  • Submitting malformed Ion data through API endpoints that accept Ion-formatted payloads
  • Sending crafted messages to services using Ion for data serialization
  • Uploading malicious Ion files to applications that process user-supplied binary data

Detection Methods for CVE-2025-3857

Indicators of Compromise

  • Abnormally high CPU utilization on services processing Ion data
  • Application threads stuck in parsing operations without completion
  • Timeouts and unresponsive behavior in services that accept Ion input
  • Memory consumption patterns indicating stuck reader operations

Detection Strategies

  • Monitor for processes or threads with sustained 100% CPU usage during Ion parsing operations
  • Implement application-level timeouts for deserialization operations
  • Use dependency scanning tools to identify Amazon.IonDotnet versions prior to 1.3.1
  • Deploy network monitoring to detect unusual patterns in Ion data submissions

Monitoring Recommendations

  • Configure alerting for CPU spikes correlated with Ion data processing endpoints
  • Implement health checks that verify parsing operations complete within expected timeframes
  • Enable detailed logging for deserialization operations to identify stuck parsers
  • Monitor application thread pools for threads blocked in RawBinaryReader operations

How to Mitigate CVE-2025-3857

Immediate Actions Required

  • Upgrade Amazon.IonDotnet to version 1.3.1 or later immediately
  • Review and patch any forked or derivative code incorporating the vulnerable library
  • Implement input validation and size limits on Ion data before processing
  • Add timeout mechanisms around Ion deserialization operations as a defensive measure

Patch Information

Amazon has released version 1.3.1 of Amazon.IonDotnet which addresses this vulnerability. The fix ensures proper validation of bytes read from the underlying stream during binary Ion deserialization, preventing the infinite loop condition. Users should upgrade by updating their NuGet package reference to Amazon.IonDotnet version 1.3.1 or later.

For complete details, refer to the AWS Security Bulletin AWS-2025-009 and the GitHub Security Advisory GHSA-gm2p-wf5c-w3pj. The patched release is available at the GitHub Release v1.3.1.

Workarounds

  • Implement strict timeout limits on all Ion deserialization operations to prevent indefinite hangs
  • Validate Ion data size and structure before passing to RawBinaryReader
  • Consider using alternative parsing approaches with stream size validation until patching is complete
  • Isolate Ion parsing operations in separate processes or containers to limit impact of resource exhaustion
bash
# Update Amazon.IonDotnet via .NET CLI
dotnet add package Amazon.IonDotnet --version 1.3.1

# Verify installed version
dotnet list package | grep Amazon.IonDotnet

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAmazon Iondotnet

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • AWS Security Bulletin AWS-2025-009

  • GitHub Release v1.3.1

  • GitHub Security Advisory GHSA-gm2p-wf5c-w3pj
  • Related CVEs
  • CVE-2025-11573: Amazon.IonDotnet 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