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

CVE-2026-33320: Tomwright Dasel DOS Vulnerability

CVE-2026-33320 is a denial of service vulnerability in Tomwright Dasel that allows attackers to trigger extreme CPU and memory consumption via malicious YAML. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33320 Overview

CVE-2026-33320 is a resource exhaustion vulnerability affecting Dasel, a popular command-line tool and library for querying, modifying, and transforming data structures. The vulnerability exists in Dasel's YAML reader implementation, which allows an attacker who can supply YAML content for processing to trigger extreme CPU and memory consumption. This denial-of-service condition occurs because the library's custom UnmarshalYAML implementation manually resolves alias nodes by recursively following yaml.Node.Alias pointers without any expansion budget, effectively bypassing go-yaml v4's built-in alias expansion limit.

Critical Impact

Attackers can craft malicious YAML documents with recursive alias structures that cause unbounded resource consumption, leading to denial of service on systems processing untrusted YAML input through Dasel.

Affected Products

  • Tomwright Dasel versions 3.0.0 through 3.3.1
  • Dasel Go library (cpe:2.3:a:tomwright:dasel::::::go::*)
  • Applications and pipelines that process untrusted YAML input using affected Dasel versions

Discovery Timeline

  • 2026-03-24 - CVE CVE-2026-33320 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-33320

Vulnerability Analysis

This vulnerability is classified under CWE-674 (Uncontrolled Recursion), which occurs when a product does not properly control the amount of recursion that takes place, consuming excessive resources. The issue specifically affects the YAML parsing functionality introduced in Dasel version 3.0.0.

The vulnerability stems from Dasel's custom implementation of the UnmarshalYAML interface. When processing YAML documents containing alias nodes (denoted by the * anchor reference syntax in YAML), the library recursively follows yaml.Node.Alias pointers to resolve the referenced content. However, this implementation lacks any limit on the number of alias expansions that can occur, creating a potential for exponential resource consumption.

Go-yaml v4 includes built-in protections against alias expansion attacks, but Dasel's custom unmarshaling logic bypasses these safeguards entirely. An attacker can exploit this by crafting a YAML document with deeply nested or self-referencing alias structures that cause the parser to consume excessive CPU cycles and memory during the resolution process.

Root Cause

The root cause is the absence of an expansion budget or recursion limit in Dasel's UnmarshalYAML implementation. When the library encounters a YAML alias node, it follows the yaml.Node.Alias pointer to retrieve the referenced node's value. Without tracking the depth or count of alias expansions, maliciously crafted YAML documents can trigger unbounded recursive processing.

The go-yaml v4 library implements an alias expansion limit specifically to prevent this class of attack, but by implementing custom alias resolution logic, Dasel inadvertently circumvents this protection mechanism.

Attack Vector

The attack requires local access, meaning an attacker must be able to supply YAML content that will be processed by Dasel. This could occur in scenarios such as:

  • Processing user-uploaded configuration files
  • Parsing YAML data from untrusted sources in CI/CD pipelines
  • Command-line usage where input files come from external sources
  • Applications using the Dasel library to process YAML from network endpoints

An attacker can craft a YAML document containing alias constructs that exploit the lack of expansion limits. When processed by vulnerable Dasel versions, the recursive alias resolution consumes memory and CPU resources until the system becomes unresponsive or the process is terminated.

The vulnerability mechanism involves creating YAML documents with alias structures that reference other aliases in a pattern that causes exponential expansion. Technical details are available in the GitHub Security Advisory.

Detection Methods for CVE-2026-33320

Indicators of Compromise

  • Abnormally high CPU utilization in processes running Dasel or applications using the Dasel library
  • Memory consumption spikes correlated with YAML file processing operations
  • Process hangs or system unresponsiveness during YAML parsing activities
  • Presence of unusually large or complex YAML files with extensive alias definitions in processing queues

Detection Strategies

  • Monitor resource consumption patterns for applications using Dasel for YAML processing
  • Implement alerting on processes that exceed expected CPU or memory thresholds during file operations
  • Audit dependencies to identify applications using vulnerable Dasel versions (3.0.0 through 3.3.1)
  • Review input validation practices for systems accepting YAML content from external sources

Monitoring Recommendations

  • Configure process-level resource monitoring for services that handle YAML parsing
  • Set up alerts for runaway processes consuming excessive CPU or memory
  • Implement timeout mechanisms for YAML processing operations as a defense-in-depth measure
  • Log and monitor the size and complexity of YAML documents being processed

How to Mitigate CVE-2026-33320

Immediate Actions Required

  • Upgrade Dasel to version 3.3.2 or later, which contains the security patch
  • Audit applications and build pipelines to identify all instances of Dasel usage
  • Implement input validation to reject or limit the complexity of YAML documents from untrusted sources
  • Consider implementing resource limits (cgroups, ulimits) for processes handling untrusted YAML input

Patch Information

The vulnerability has been addressed in Dasel version 3.3.2. The fix implements an expansion budget that limits the number of alias resolutions during YAML parsing, preventing the unbounded recursion that enables this denial-of-service attack. Organizations should update to the patched version as soon as possible.

For detailed patch information and security guidance, refer to the GitHub Security Advisory GHSA-4fcp-jxh7-23x8.

Workarounds

  • Avoid processing YAML content from untrusted or unverified sources until the patch can be applied
  • Implement process-level resource limits to contain the impact of potential exploitation attempts
  • Use containerization with strict resource constraints when running Dasel operations on external data
  • Consider pre-validating YAML input using alternative parsers with built-in alias limits before passing to Dasel
bash
# Update Dasel to the patched version
go get github.com/TomWright/dasel@v3.3.2

# Or using go mod
go mod edit -require github.com/TomWright/dasel@v3.3.2
go mod tidy

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechTomwright Dasel

  • SeverityMEDIUM

  • CVSS Score6.2

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-674
  • Vendor Resources
  • GitHub Security Advisory
  • 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