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-2023-30533

CVE-2023-30533: SheetJS Prototype Pollution Vulnerability

CVE-2023-30533 is a prototype pollution vulnerability in SheetJS Community Edition that allows attackers to exploit crafted files. This article covers the technical details, affected versions (0.19.2 and earlier), and mitigation.

Published: February 11, 2026

CVE-2023-30533 Overview

CVE-2023-30533 is a Prototype Pollution vulnerability discovered in SheetJS Community Edition, a popular JavaScript library used for parsing and manipulating spreadsheet files. The vulnerability allows attackers to pollute JavaScript object prototypes via a specially crafted file, potentially leading to unauthorized code execution, denial of service, or data manipulation in applications that process untrusted spreadsheet files.

Critical Impact

Successful exploitation of this Prototype Pollution vulnerability could allow attackers to modify the behavior of legitimate JavaScript objects throughout an application, potentially leading to arbitrary code execution, authentication bypasses, or denial of service conditions.

Affected Products

  • SheetJS Community Edition versions prior to 0.19.3
  • SheetJS 0.19.2 and earlier releases
  • Applications using SheetJS via Node.js package ecosystem

Discovery Timeline

  • April 24, 2023 - CVE-2023-30533 published to NVD
  • February 4, 2025 - Last updated in NVD database

Technical Details for CVE-2023-30533

Vulnerability Analysis

This vulnerability is classified under CWE-1321 (Improperly Controlled Modification of Object Prototype Attributes), commonly known as Prototype Pollution. In JavaScript, objects inherit properties and methods from their prototype chain. When an application improperly allows user-controlled input to modify the prototype of base objects like Object.prototype, an attacker can inject malicious properties that propagate to all objects in the application.

SheetJS processes spreadsheet files in various formats (XLS, XLSX, CSV, etc.) and parses their contents into JavaScript objects. The vulnerability exists in how SheetJS handles certain properties within crafted spreadsheet files. When processing a malicious file, user-controlled data could be written to the prototype chain, affecting all subsequently created objects.

The attack requires local user interaction—a victim must open a malicious spreadsheet file using an application that incorporates the vulnerable SheetJS library. Once the file is processed, the injected prototype properties can alter application logic, bypass security controls, or execute arbitrary code depending on how the application uses the polluted objects.

Root Cause

The root cause of this vulnerability lies in insufficient validation and sanitization of property names and values when parsing spreadsheet file structures. SheetJS failed to properly check whether incoming property names corresponded to special JavaScript prototype properties like __proto__, constructor, or prototype. Without these checks, malicious property assignments from crafted spreadsheet data could traverse the prototype chain and modify base object prototypes.

Attack Vector

The attack vector is local, requiring user interaction to process a malicious file. An attacker would craft a specially formatted spreadsheet file containing payload data designed to exploit the Prototype Pollution vulnerability. The attack chain typically follows these steps:

  1. Attacker creates a malicious spreadsheet file with crafted property names targeting prototype pollution
  2. The file is delivered to a victim through phishing, file sharing, or other social engineering methods
  3. The victim opens the file using an application built with vulnerable SheetJS versions
  4. During file parsing, malicious properties are injected into JavaScript object prototypes
  5. Polluted prototypes affect subsequent object operations, enabling further exploitation

The vulnerability mechanism involves parsing spreadsheet cell data or metadata where specially crafted property keys like __proto__.isAdmin could be interpreted as prototype modification instructions. For technical details on the specific parsing logic affected, refer to the SheetJS Issue #2986 and the SheetJS Security Advisory.

Detection Methods for CVE-2023-30533

Indicators of Compromise

  • Unusual property assignments appearing on JavaScript base objects that were not explicitly defined by application code
  • Application behavior changes after processing external spreadsheet files
  • Unexpected authentication bypasses or privilege escalations following spreadsheet file uploads
  • Error logs indicating unexpected object properties or type mismatches

Detection Strategies

  • Implement Software Composition Analysis (SCA) scanning to identify SheetJS versions below 0.19.3 in your codebase and dependencies
  • Monitor application logs for unusual object property access patterns or prototype-related errors
  • Deploy runtime application protection (RASP) solutions that can detect prototype pollution attempts
  • Use JavaScript linters and static analysis tools configured to flag dangerous prototype access patterns

Monitoring Recommendations

  • Audit all applications and services that handle spreadsheet file processing for vulnerable SheetJS versions
  • Implement file upload monitoring to track spreadsheet files processed by applications using SheetJS
  • Enable verbose logging in Node.js applications to capture object manipulation anomalies
  • Regularly scan dependency trees using npm audit or similar tools to identify vulnerable packages

How to Mitigate CVE-2023-30533

Immediate Actions Required

  • Upgrade SheetJS Community Edition to version 0.19.3 or later immediately
  • Audit all projects using SheetJS to identify vulnerable installations across your organization
  • Review recent file processing activity for any suspicious spreadsheet files
  • Consider temporarily disabling spreadsheet processing functionality if immediate patching is not feasible

Patch Information

SheetJS has addressed this vulnerability in version 0.19.3. The fix implements proper validation and sanitization of property names during spreadsheet parsing to prevent prototype pollution attacks. Organizations should update their SheetJS dependency to the patched version as soon as possible.

For detailed patch information, refer to the SheetJS Changelog and the official SheetJS Security Advisory for CVE-2023-30533.

Workarounds

  • Implement input validation to reject spreadsheet files from untrusted sources until patching is complete
  • Use Object.freeze() or Object.seal() on critical objects to prevent prototype modification in sensitive application contexts
  • Deploy web application firewalls (WAF) or content inspection systems to scan uploaded spreadsheet files for malicious payloads
  • Consider using sandboxed environments for spreadsheet processing to isolate potential prototype pollution impacts
bash
# Update SheetJS to patched version
npm update xlsx@latest

# Verify installed version is 0.19.3 or higher
npm list xlsx

# Run security audit to check for other vulnerable dependencies
npm audit

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechSheetjs

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability4.35%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Technical References
  • SheetJS Issue #2986

  • SheetJS Changelog Document
  • Vendor Resources
  • SheetJS Security Advisory CVE-2023-30533
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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