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

CVE-2026-32285: JSON Processing DoS Vulnerability

CVE-2026-32285 is a denial of service flaw in JSON processing where improper offset validation leads to runtime panics. This article covers the technical details, affected systems, and mitigation strategies.

Published: March 27, 2026

CVE-2026-32285 Overview

CVE-2026-32285 is a denial of service vulnerability in the jsonparser Go library. The Delete function fails to properly validate offsets when processing malformed JSON input. This can lead to a negative slice index and a runtime panic, allowing a denial of service attack against applications using this library.

Critical Impact

Applications using the vulnerable Delete function can be crashed by attackers supplying malformed JSON input, resulting in service disruption and potential availability issues.

Affected Products

  • buger/jsonparser Go library (affected versions not specified)
  • Go applications utilizing the jsonparser library's Delete function

Discovery Timeline

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

Technical Details for CVE-2026-32285

Vulnerability Analysis

This vulnerability affects the Delete function in the jsonparser Go library. The function is designed to remove elements from JSON data structures but contains insufficient validation logic for offset calculations. When the function processes specially crafted malformed JSON input, it can calculate a negative offset value that is subsequently used as a slice index.

In Go, attempting to access a slice with a negative index causes a runtime panic, which immediately terminates the goroutine or application if not properly recovered. This behavior can be exploited by attackers to cause denial of service conditions in any application that uses the vulnerable Delete function to process untrusted JSON input.

Root Cause

The root cause of this vulnerability is improper input validation in the offset calculation logic within the Delete function. When the function encounters malformed JSON structures, the offset computation can result in negative values. The code lacks boundary checks to ensure that calculated offsets remain within valid positive ranges before using them as slice indices.

This is classified as an Input Validation Error vulnerability where the function does not adequately sanitize or validate input before performing critical operations.

Attack Vector

An attacker can exploit this vulnerability by providing malformed JSON input to an application that uses the vulnerable Delete function. The attack does not require authentication or special privileges—only the ability to submit JSON data that will be processed by the vulnerable function.

The exploitation flow involves:

  1. The attacker identifies an application endpoint or component that processes JSON using the jsonparser library
  2. The attacker crafts malformed JSON input designed to trigger negative offset calculation
  3. When the application calls the Delete function with this input, a negative slice index is computed
  4. Go's runtime panics when attempting to access the slice with the negative index
  5. Unless the application has panic recovery mechanisms, the process terminates

For technical details and proof of concept information, see the GitHub Issue #275 in the jsonparser repository.

Detection Methods for CVE-2026-32285

Indicators of Compromise

  • Application crashes with Go runtime panic messages referencing negative slice index errors
  • Log entries showing panic recovery in handlers processing JSON data
  • Increased application restarts or service availability issues
  • Error logs containing stack traces pointing to the jsonparser library's Delete function

Detection Strategies

  • Monitor application logs for Go runtime panic messages containing "index out of range" or "negative slice index" errors
  • Implement application-level monitoring to detect abnormal restart patterns or crash loops
  • Use static code analysis tools to identify usage of the vulnerable jsonparser.Delete function in codebases
  • Deploy dependency scanning tools to identify projects using vulnerable versions of the jsonparser library

Monitoring Recommendations

  • Configure alerting for application crash events and panic recovery occurrences
  • Implement health checks that can detect when services become unavailable due to crashes
  • Monitor JSON parsing error rates for unusual spikes that may indicate exploitation attempts
  • Review the Go.dev Vulnerability Report for updated guidance and version information

How to Mitigate CVE-2026-32285

Immediate Actions Required

  • Audit your Go projects for usage of the jsonparser library, specifically the Delete function
  • Review the GitHub Vulndb Issue #4514 for patched version information
  • Implement input validation on JSON data before passing it to the Delete function
  • Consider adding panic recovery wrappers around code sections that process untrusted JSON input

Patch Information

Refer to the official GitHub Issue #275 for patch status and updates from the maintainers. Monitor the Go.dev Vulnerability Report for information about fixed versions and upgrade guidance.

Workarounds

  • Implement robust input validation to reject malformed JSON before it reaches the Delete function
  • Wrap calls to the Delete function with Go's recover() mechanism to prevent application crashes
  • Consider using alternative JSON parsing libraries that have undergone security auditing
  • Implement rate limiting on endpoints that process JSON to limit potential denial of service impact

The following example demonstrates implementing panic recovery as a temporary mitigation:

go
# Panic recovery wrapper for jsonparser.Delete
func safeDelete(data []byte, keys ...string) (result []byte, err error) {
    defer func() {
        if r := recover(); r != nil {
            err = fmt.Errorf("jsonparser panic recovered: %v", r)
            result = nil
        }
    }()
    
    result = jsonparser.Delete(data, keys...)
    return result, nil
}

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 Issue #275

  • GitHub Vulndb Issue #4514

  • Go.dev Vulnerability Report
  • 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