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

CVE-2026-24888: Maker.js Information Disclosure Vulnerability

CVE-2026-24888 is an information disclosure flaw in Maker.js affecting versions up to 0.19.1. Improper property validation exposes applications to security risks. This article covers technical details, impact, and patches.

Published: January 30, 2026

CVE-2026-24888 Overview

CVE-2026-24888 is a Prototype Pollution vulnerability in Maker.js, a 2D vector line drawing and shape modeling library designed for CNC and laser cutters. The vulnerability exists in the makerjs.extendObject function, which copies properties from source objects without proper validation, potentially exposing applications to security risks.

The function lacks hasOwnProperty() checks and does not filter dangerous keys, allowing inherited properties and potentially malicious properties to be copied to target objects. This can lead to various security issues including denial of service, data manipulation, and in some cases, remote code execution depending on how the polluted prototype is used downstream.

Critical Impact

Prototype pollution in Maker.js can allow attackers to inject malicious properties into Object prototypes, potentially affecting application-wide behavior and security controls.

Affected Products

  • Maker.js versions up to and including 0.19.1
  • Applications using the makerjs.extendObject function with untrusted input
  • CNC and laser cutter software integrating vulnerable Maker.js versions

Discovery Timeline

  • 2026-01-28 - CVE CVE-2026-24888 published to NVD
  • 2026-01-29 - Last updated in NVD database

Technical Details for CVE-2026-24888

Vulnerability Analysis

The vulnerability is classified under CWE-1321 (Improperly Controlled Modification of Object Prototype Attributes). Prototype pollution occurs when an attacker is able to inject properties into existing JavaScript object prototypes. In the case of Maker.js, the extendObject function fails to properly validate the properties being copied from source to target objects.

When the function copies properties without checking hasOwnProperty(), it may inadvertently copy inherited properties from the prototype chain. More critically, if an attacker can control the source object, they can inject properties like __proto__, constructor, or prototype that will pollute the Object prototype and affect all objects in the application.

This vulnerability allows network-based attacks without requiring authentication or user interaction. The impact includes potential compromise of data confidentiality and integrity, though availability is not directly affected.

Root Cause

The root cause lies in the unsafe implementation of the makerjs.extendObject function located in packages/maker.js/src/core/maker.ts. The function iterates over source object properties and copies them to the target without:

  1. Checking if properties are own properties using hasOwnProperty()
  2. Filtering dangerous property names such as __proto__, constructor, or prototype
  3. Validating the type or safety of values being assigned

This allows inherited properties from the prototype chain to be copied, and more dangerously, allows specially crafted objects to pollute the global Object prototype.

Attack Vector

An attacker can exploit this vulnerability by providing a malicious object as input to any application function that ultimately passes data through makerjs.extendObject. The attack requires the application to process attacker-controlled input through this function path. Once the prototype is polluted, the injected properties become available on all objects within the application, potentially bypassing security checks, modifying application behavior, or enabling further attacks.

The network-based attack vector with low complexity makes this vulnerability particularly concerning for web applications that use Maker.js to process user-supplied design files or configurations.

The security patch modifies line references in the codebase to address this vulnerability. The fix is available in commit 85e0f12bd868974b891601a141974f929dec36b8:

text
 		<aside class="tsd-sources">
 			<p>Inherited from <a href="makerjs.exporter.idxfrenderoptions.html">IDXFRenderOptions</a>.<a href="makerjs.exporter.idxfrenderoptions.html#pointmatchingdistance">pointMatchingDistance</a></p>
 			<ul>
-				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L519">src/maker.js/packages/maker.js/src/core/maker.ts:519</a></li>
+				<li>Defined in <a href="https://github.com/microsoft/maker.js/blob/master/packages/maker.js/src/core/maker.ts#L520">src/maker.js/packages/maker.js/src/core/maker.ts:520</a></li>
 			</ul>
 		</aside>
 		<div class="tsd-comment tsd-typography">

Source: GitHub Commit Reference

Detection Methods for CVE-2026-24888

Indicators of Compromise

  • Unexpected properties appearing on JavaScript objects across the application
  • Application behavior changes not triggered by legitimate code paths
  • Error messages or crashes related to unexpected object property access
  • Log entries showing unusual property names like __proto__ or constructor in user input

Detection Strategies

  • Implement application-level logging to monitor calls to extendObject and similar functions with user-controlled data
  • Use static analysis tools to identify usage of vulnerable Maker.js versions in codebases
  • Deploy runtime application self-protection (RASP) solutions to detect prototype pollution attempts
  • Scan dependency manifests (package.json) for Maker.js versions <= 0.19.1

Monitoring Recommendations

  • Monitor application logs for JSON parsing errors or unexpected object mutations
  • Set up alerts for unusual patterns in design file uploads or API inputs
  • Track Object prototype state in development and testing environments
  • Implement integrity checks on critical application objects

How to Mitigate CVE-2026-24888

Immediate Actions Required

  • Update Maker.js to version 0.19.2 or later which contains the security fix
  • Audit application code for any usage of makerjs.extendObject with untrusted input
  • Review and validate all user input before processing through Maker.js functions
  • Consider implementing Object.freeze() on Object.prototype as a temporary mitigation

Patch Information

A patch is available in commit 85e0f12bd868974b891601a141974f929dec36b8, which is expected to be part of version 0.19.2. The fix implements proper property validation in the extendObject function to prevent prototype pollution attacks.

For detailed patch information, refer to the GitHub Security Advisory GHSA-2cp6-34r9-54xx and the source code reference.

Workarounds

  • Implement input validation to strip dangerous properties (__proto__, constructor, prototype) before passing data to Maker.js
  • Create a wrapper function around extendObject that performs hasOwnProperty() checks
  • Use Object.create(null) for objects that will be extended to avoid prototype chain issues
  • Freeze Object.prototype in environments where this won't break application functionality
bash
# Update Maker.js to patched version
npm update maker.js@^0.19.2

# Or install specific patched version
npm install maker.js@0.19.2

# Verify installed version
npm list maker.js

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechMakerjs

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.16%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-1321
  • Technical References
  • GitHub Source Code Snippet

  • GitHub Commit Reference

  • GitHub Security Advisory GHSA-2cp6-34r9-54xx
  • 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