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

CVE-2026-27452: ASN.1 TypeScript Information Disclosure

CVE-2026-27452 is an information disclosure vulnerability in the ASN.1 TypeScript ESM library that can leak ArrayBuffer data when decoding INTEGER values. This article covers technical details, affected versions, and fixes.

Published: February 27, 2026

CVE-2026-27452 Overview

CVE-2026-27452 is an information disclosure vulnerability in the ASN.1 TypeScript ESM library (asn1-ts), which provides codecs for Basic Encoding Rules (BER) and Distinguished Encoding Rules (DER). In versions 11.0.5 and below, decoding an INTEGER value can inadvertently leak the contents of the underlying ArrayBuffer, potentially exposing sensitive data that was previously stored in memory.

Critical Impact

This vulnerability allows remote attackers to potentially access sensitive information from memory through crafted ASN.1 INTEGER values, creating a significant data exposure risk in applications processing untrusted ASN.1 data.

Affected Products

  • asn1-ts versions 11.0.5 and below
  • Applications using asn1-ts for BER/DER decoding operations
  • Node.js and browser-based applications processing ASN.1 encoded data

Discovery Timeline

  • 2026-02-21 - CVE CVE-2026-27452 published to NVD
  • 2026-02-23 - Last updated in NVD database

Technical Details for CVE-2026-27452

Vulnerability Analysis

This vulnerability is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The flaw exists in the INTEGER decoding functionality of the asn1-ts library. When processing certain INTEGER values, the library fails to properly isolate the decoded data from the underlying ArrayBuffer, which may contain residual data from previous memory allocations.

ArrayBuffer objects in JavaScript represent fixed-length raw binary data buffers. When an ArrayBuffer is created or reused, it may retain data from previous operations. The asn1-ts library's INTEGER decoder, in affected versions, creates views into ArrayBuffers without properly ensuring that only the intended bytes are accessible, potentially allowing access to adjacent memory contents.

The vulnerability can be triggered remotely by sending specially crafted ASN.1 encoded data to an application using the vulnerable library. Since ASN.1 encoding is commonly used in cryptographic protocols, certificate parsing, and secure communications (including X.509 certificates, LDAP, SNMP, and other protocols), the attack surface for this vulnerability can be substantial.

Root Cause

The root cause is improper bounds handling when creating typed array views over ArrayBuffer objects during INTEGER decoding operations. The library does not adequately constrain the view to only the bytes representing the decoded INTEGER value, potentially exposing additional bytes from the underlying buffer that may contain sensitive information from prior operations.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can exploit this vulnerability by sending maliciously crafted ASN.1 encoded data to any application that uses the vulnerable asn1-ts library for decoding. The attack does not require any privileges and can be executed remotely against any exposed endpoint that processes ASN.1 data.

Potential attack scenarios include:

  • Sending crafted certificates or certificate requests to web servers
  • Targeting LDAP directory services that process ASN.1 encoded queries
  • Exploiting applications that parse ASN.1 data from untrusted sources

The vulnerability manifests in the INTEGER decoding function where ArrayBuffer views are created without proper boundary constraints. For detailed technical analysis, see the GitHub Security Advisory.

Detection Methods for CVE-2026-27452

Indicators of Compromise

  • Unusual patterns of ASN.1 encoded requests with malformed INTEGER values
  • Repeated decoding operations that return more data than expected for INTEGER types
  • Memory inspection revealing sensitive data leakage in responses
  • Anomalous traffic patterns targeting ASN.1 processing endpoints

Detection Strategies

  • Implement application-level logging for ASN.1 decoding operations to detect unusual INTEGER values
  • Monitor for responses containing unexpected amounts of data following INTEGER decoding
  • Deploy SentinelOne Singularity to detect memory-based information disclosure attacks
  • Use runtime application self-protection (RASP) to monitor library behavior

Monitoring Recommendations

  • Enable detailed logging for all ASN.1 parsing operations in affected applications
  • Monitor network traffic for unusually large responses from ASN.1 processing endpoints
  • Implement data loss prevention (DLP) controls to detect potential information leakage
  • Configure alerts for repeated failed or anomalous ASN.1 decoding attempts

How to Mitigate CVE-2026-27452

Immediate Actions Required

  • Upgrade asn1-ts library to version 11.0.6 or later immediately
  • Audit applications to identify all instances of asn1-ts library usage
  • Implement input validation for ASN.1 data before processing
  • Consider temporarily disabling or restricting access to endpoints that process untrusted ASN.1 data

Patch Information

The vulnerability is expected to be fixed in asn1-ts version 11.0.6. Organizations should update their dependencies as soon as the patched version becomes available. Review the GitHub Security Advisory for the latest patch status and upgrade instructions.

For npm-based projects, update the dependency by modifying package.json to require version 11.0.6 or higher, then run your package manager's update command.

Workarounds

  • Implement strict input validation to reject malformed ASN.1 INTEGER values before they reach the vulnerable decoder
  • Add application-layer bounds checking when handling decoded INTEGER data to prevent leakage
  • Isolate ASN.1 processing in sandboxed environments to limit potential data exposure
  • Restrict network access to ASN.1 processing endpoints to trusted sources only
bash
# Update asn1-ts to patched version
npm update asn1-ts@^11.0.6

# Verify installed version
npm list asn1-ts

# For yarn users
yarn upgrade asn1-ts@^11.0.6

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechTypescript

  • SeverityCRITICAL

  • CVSS Score9.2

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:H/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
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Security Advisory
  • 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