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

CVE-2026-3664: Xlnt Buffer Overflow Vulnerability

CVE-2026-3664 is a buffer overflow vulnerability in xlnt-community xlnt up to version 1.6.1 affecting encrypted XLSX file parsing. This article covers technical details, affected versions, security impact, and mitigation.

Published: March 13, 2026

CVE-2026-3664 Overview

A vulnerability has been identified in xlnt-community xlnt up to version 1.6.1. The issue affects the function xlnt::detail::compound_document::read_directory within the file source/detail/cryptography/compound_document.cpp of the Encrypted XLSX File Parser component. Exploitation of this vulnerability through manipulation of crafted input can lead to an out-of-bounds read condition. This vulnerability requires local access to exploit and the exploit details have been publicly disclosed.

Critical Impact

An attacker with local access can trigger an out-of-bounds read in the xlnt library's encrypted XLSX file parsing functionality, potentially causing application crashes or information disclosure from adjacent memory regions.

Affected Products

  • xlnt-community xlnt versions up to and including 1.6.1
  • Applications utilizing the xlnt library for encrypted XLSX file processing
  • Software incorporating the compound document cryptography module

Discovery Timeline

  • 2026-03-07 - CVE CVE-2026-3664 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2026-3664

Vulnerability Analysis

This vulnerability is classified as CWE-119 (Improper Restriction of Operations within the Bounds of a Memory Buffer). The flaw resides in the encrypted XLSX file parsing component, specifically within the compound document handling code. When processing malformed or specially crafted encrypted XLSX files, the read_directory function fails to properly validate buffer boundaries before reading data.

The vulnerability occurs in the cryptography subsystem where compound documents are parsed. The affected function processes directory entries from encrypted XLSX files without adequate bounds checking, allowing reads beyond allocated memory regions. This can result in application instability, crashes, or potential exposure of sensitive data from adjacent memory.

Root Cause

The root cause stems from insufficient boundary validation in the xlnt::detail::compound_document::read_directory function located in source/detail/cryptography/compound_document.cpp. When parsing directory structures within encrypted XLSX files, the function does not properly verify that read operations stay within the allocated buffer boundaries. This oversight allows specially crafted input to trigger reads past the end of the intended memory region.

Attack Vector

The attack requires local access to execute. An attacker must craft a malicious encrypted XLSX file and have it processed by an application using the vulnerable xlnt library. The exploitation scenario typically involves:

  1. Creating a specially crafted encrypted XLSX file with malformed compound document structures
  2. Having the target application or library process the malicious file
  3. Triggering the out-of-bounds read when the read_directory function parses the crafted input

The vulnerability has been publicly disclosed with proof-of-concept materials available. Technical details can be found in the GitHub PoC Repository and the GitHub Issue #141 tracking this vulnerability.

Detection Methods for CVE-2026-3664

Indicators of Compromise

  • Unexpected application crashes when processing encrypted XLSX files
  • Abnormal memory access patterns in applications using the xlnt library
  • Unusual XLSX files with malformed compound document structures being processed
  • Application logs indicating memory access violations in cryptography-related functions

Detection Strategies

  • Monitor applications using xlnt library for crashes or abnormal terminations during file processing
  • Implement file validation to identify malformed encrypted XLSX files before processing
  • Deploy runtime memory protection tools to detect out-of-bounds memory access attempts
  • Review application logs for errors related to compound document parsing failures

Monitoring Recommendations

  • Enable verbose logging for applications processing XLSX files with the xlnt library
  • Monitor system stability metrics for applications handling encrypted documents
  • Implement alerting for memory access violations in production environments
  • Track xlnt library versions in use across the environment for vulnerability management

How to Mitigate CVE-2026-3664

Immediate Actions Required

  • Update xlnt library to the patched version incorporating Pull Request #147
  • Audit applications to identify all instances of xlnt library usage
  • Implement input validation for XLSX files before processing with vulnerable library versions
  • Consider restricting encrypted XLSX file processing from untrusted sources until patched

Patch Information

The fix for this vulnerability is available in Pull Request #147 on the xlnt-community GitHub repository. Users are strongly advised to apply this patch to resolve the out-of-bounds read vulnerability. For detailed tracking information, refer to GitHub Issue #141 and the VulDB entry #349553.

Workarounds

  • Restrict processing of encrypted XLSX files to trusted sources only until the patch is applied
  • Implement additional input validation layers to verify XLSX file integrity before processing
  • Deploy the application in sandboxed environments to limit potential impact of exploitation
  • Consider alternative libraries for encrypted XLSX processing if immediate patching is not feasible
bash
# Example: Update xlnt library from source with patch applied
git clone https://github.com/xlnt-community/xlnt.git
cd xlnt
git fetch origin pull/147/head:patch-147
git checkout patch-147
mkdir build && cd build
cmake ..
make && make install

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechXlnt

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityLow
  • CWE References
  • CWE-119
  • Technical References
  • GitHub PoC Repository

  • GitHub Project Repository

  • GitHub Pull Request #147

  • VulDB CTI #349553

  • VulDB #349553

  • VulDB Submission #764646
  • Vendor Resources
  • GitHub Issue #141
  • Related CVEs
  • CVE-2026-3663: Xlnt-community Xlnt Buffer Overflow Flaw

  • CVE-2026-3463: xlnt-community xlnt Buffer Overflow Flaw

  • CVE-2026-2703: xlnt Buffer Overflow Vulnerability

  • CVE-2026-3665: Xlnt-community Xlnt Use-After-Free Flaw
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