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

CVE-2026-32284: msgpack Decoder DoS Vulnerability

CVE-2026-32284 is a denial of service flaw in msgpack decoder caused by improper validation of truncated fixext data, leading to out-of-bounds reads. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-32284 Overview

CVE-2026-32284 is an out-of-bounds read vulnerability in the msgpack decoder that occurs when processing truncated fixext data. The decoder fails to properly validate the input buffer length when handling format codes 0xd4-0xd8, which represent fixed-length extension types in the MessagePack specification. This insufficient bounds checking can lead to an out-of-bounds read and subsequent runtime panic, enabling denial of service attacks against applications using the affected library.

Critical Impact

Attackers can send malformed MessagePack data with truncated fixext payloads to crash applications, causing service disruption without authentication or user interaction.

Affected Products

  • shamaton/msgpack Go library (versions containing the vulnerable decoder)
  • Applications using the affected msgpack library for data deserialization
  • Services processing untrusted MessagePack input

Discovery Timeline

  • 2026-03-26 - CVE-2026-32284 published to NVD
  • 2026-03-26 - Last updated in NVD database

Technical Details for CVE-2026-32284

Vulnerability Analysis

This vulnerability exists in the MessagePack decoder's handling of fixext format types. MessagePack's fixext formats (0xd4 through 0xd8) are designed to encode extension types with fixed byte lengths (1, 2, 4, 8, and 16 bytes respectively). The vulnerable code path fails to verify that sufficient bytes remain in the input buffer before attempting to read the expected extension data payload.

When a maliciously crafted or truncated MessagePack stream contains a fixext format code followed by fewer bytes than expected, the decoder attempts to read beyond the allocated buffer boundaries. In Go, this triggers a runtime panic due to slice bounds checking, effectively crashing the application.

Root Cause

The root cause is improper input validation in the buffer length checking logic. Before processing fixext format codes, the decoder should verify that the input buffer contains at least the required number of bytes (format byte + type byte + fixed payload length). The absence of this validation allows truncated input to trigger out-of-bounds memory access.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted MessagePack data to any application that deserializes untrusted input using the affected library. The attack requires:

  1. Network access to send malformed MessagePack data to the target application
  2. The target application must process the attacker-controlled input through the vulnerable decoder

The attack is straightforward to execute—an attacker simply sends a MessagePack stream containing a fixext format code (e.g., 0xd4) followed by an insufficient number of bytes. When the decoder attempts to read the expected fixed-length payload, it reads beyond buffer boundaries, causing a panic and service crash.

For example, sending a byte sequence like [0xd4, 0x01] (fixext1 format with only the type byte, missing the 1-byte payload) would trigger the vulnerability. Technical details and the fix can be found in the GitHub msgpack Issue #59.

Detection Methods for CVE-2026-32284

Indicators of Compromise

  • Application crashes with Go runtime panic messages related to slice bounds
  • Error logs showing "index out of range" or "slice bounds out of range" in msgpack decoding functions
  • Sudden service restarts or availability issues when processing external data

Detection Strategies

  • Monitor application logs for panic stack traces originating from msgpack decoder functions
  • Implement anomaly detection for unusual application restart patterns
  • Deploy input validation at ingress points to detect malformed MessagePack headers
  • Use fuzzing tools to test MessagePack parsing code paths during security assessments

Monitoring Recommendations

  • Configure alerting on application crash rates and restart frequency
  • Monitor for repeated panic events in Go applications processing MessagePack data
  • Track network traffic patterns for abnormally small MessagePack payloads with extension format codes

How to Mitigate CVE-2026-32284

Immediate Actions Required

  • Review applications for usage of the shamaton/msgpack library
  • Update to a patched version of the msgpack library when available
  • Consider implementing input validation before passing data to the msgpack decoder
  • Deploy rate limiting to reduce the impact of denial of service attempts

Patch Information

Security updates and patch information are being tracked in the Go vulnerability database. Refer to the Go.dev Security Vulnerability GO-2026-4513 for the latest patching guidance and the GitHub VulnDB Issue #4513 for additional details.

Organizations should update to a fixed version of the library as soon as patches become available through normal dependency update channels.

Workarounds

  • Validate MessagePack input length before processing to ensure complete payloads
  • Implement recovery handlers around msgpack decoding to catch panics and prevent application crashes
  • Deploy a reverse proxy or WAF to filter potentially malicious MessagePack payloads
  • Isolate MessagePack processing in separate goroutines with panic recovery

Implementing panic recovery around deserialization code can help maintain service availability:

go
// Panic recovery wrapper for msgpack decoding
func safeDecode(data []byte, v interface{}) error {
    defer func() {
        if r := recover(); r != nil {
            log.Printf("Recovered from msgpack decode panic: %v", r)
        }
    }()
    return msgpack.Unmarshal(data, v)
}

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

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • GitHub VulnDB Issue #4513

  • GitHub msgpack Issue #59

  • Go.dev Security Vulnerability GO-2026-4513
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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