Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-32845

CVE-2026-32845: cgltf Integer Overflow DoS Vulnerability

CVE-2026-32845 is an integer overflow vulnerability in cgltf versions 1.15 and prior that enables attackers to trigger denial of service crashes through crafted glTF files. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-32845 Overview

CVE-2026-32845 is an integer overflow vulnerability affecting cgltf version 1.15 and earlier. The flaw exists in the cgltf_validate() function when validating sparse accessors, allowing attackers to trigger out-of-bounds reads by supplying crafted glTF/GLB input files with attacker-controlled size values. Successful exploitation can lead to denial of service crashes and potential memory disclosure through heap buffer over-reads in cgltf_calc_index_bound().

Critical Impact

Attackers can exploit unchecked arithmetic operations in sparse accessor validation to cause heap buffer over-reads, resulting in application crashes and potential exposure of sensitive memory contents when processing malicious 3D model files.

Affected Products

  • cgltf version 1.15 and prior versions

Discovery Timeline

  • 2026-03-23 - CVE CVE-2026-32845 published to NVD
  • 2026-03-24 - Last updated in NVD database

Technical Details for CVE-2026-32845

Vulnerability Analysis

This vulnerability stems from insufficient validation of arithmetic operations when processing sparse accessor data in glTF/GLB files. The cgltf library, a single-file glTF 2.0 parser written in C, performs size calculations during the validation phase that can overflow when processing maliciously crafted input. When the cgltf_validate() function processes sparse accessor metadata, attacker-controlled size values can cause integer overflow conditions that bypass boundary checks.

The vulnerability is classified as CWE-190 (Integer Overflow or Wraparound), indicating that arithmetic operations exceed the maximum value representable by the data type, wrapping around to an unexpectedly small value. This subsequently allows the cgltf_calc_index_bound() function to read beyond allocated heap buffer boundaries.

Root Cause

The root cause lies in unchecked arithmetic operations within the sparse accessor validation logic. When calculating buffer sizes and offsets for sparse accessor elements, the code does not properly validate that multiplication and addition operations will not overflow. An attacker can craft glTF/GLB files with carefully chosen count and stride values that, when multiplied together, exceed the maximum integer value and wrap around to a small positive number. This bypasses subsequent boundary validation checks that rely on the calculated size.

Attack Vector

The attack requires local access, meaning an attacker must convince a victim to open a malicious glTF or GLB file using an application that incorporates the vulnerable cgltf library. Common attack scenarios include:

  • Distributing malicious 3D model files through file-sharing platforms
  • Embedding malicious glTF content in web applications that use cgltf for client-side parsing
  • Exploiting automated 3D asset processing pipelines that ingest untrusted content

The exploitation mechanism involves crafting a glTF/GLB file with sparse accessor definitions containing size values that trigger the integer overflow. When the victim's application loads and validates the file, the overflow causes the parser to read beyond allocated buffer boundaries, potentially crashing the application or disclosing heap memory contents.

Detection Methods for CVE-2026-32845

Indicators of Compromise

  • Application crashes when opening glTF or GLB 3D model files from untrusted sources
  • Unusual memory access patterns in applications using cgltf for file parsing
  • Error logs indicating heap corruption or out-of-bounds memory access during 3D file processing

Detection Strategies

  • Monitor for crashes in applications that process glTF/GLB files, particularly those reporting memory access violations
  • Implement file integrity checks for incoming 3D model assets before processing
  • Deploy endpoint detection to identify applications loading potentially vulnerable cgltf library versions

Monitoring Recommendations

  • Audit systems for applications that incorporate cgltf library versions 1.15 and earlier
  • Log and alert on abnormal process terminations in 3D rendering or asset processing applications
  • Monitor network traffic for downloads of glTF/GLB files from untrusted or suspicious sources

How to Mitigate CVE-2026-32845

Immediate Actions Required

  • Upgrade cgltf to a patched version when available from the upstream project
  • Implement input validation on glTF/GLB files before processing with cgltf
  • Restrict processing of 3D model files to trusted sources only
  • Consider sandboxing applications that process untrusted glTF/GLB content

Patch Information

Users should monitor the cgltf GitHub repository for patch availability. The VulnCheck Security Advisory provides additional technical details and remediation guidance. Until a patch is available, organizations should implement compensating controls to limit exposure.

Workarounds

  • Validate glTF/GLB files using alternative parsers or schema validators before processing with cgltf
  • Implement resource limits and sandboxing for applications processing untrusted 3D model files
  • Configure file type restrictions to block glTF/GLB files from untrusted network sources
  • Deploy application-level exception handling to gracefully manage parsing failures without exposing crash data

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechCgltf

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/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-190
  • Technical References
  • GitHub Issue Discussion

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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