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-2020-21913

CVE-2020-21913: ICU Use After Free Vulnerability

CVE-2020-21913 is a use after free vulnerability in International Components for Unicode (ICU) v66.1 affecting pkg_createWithAssemblyCode function. This article covers technical details, affected versions, impact, and mitigation.

Published: March 4, 2026

CVE-2020-21913 Overview

CVE-2020-21913 is a Use After Free vulnerability discovered in International Components for Unicode (ICU) v66.1. The vulnerability exists in the pkg_createWithAssemblyCode function within the tools/pkgdata/pkgdata.cpp file. This memory corruption flaw can be triggered when processing specially crafted input, potentially leading to application crashes and denial of service conditions.

Critical Impact

Successful exploitation of this use after free vulnerability can cause application denial of service through memory corruption, affecting systems that rely on ICU for internationalization support.

Affected Products

  • Unicode International Components for Unicode (ICU) v66.1 and earlier versions
  • Debian Linux 9.0 (Stretch)
  • Debian Linux 10.0 (Buster)

Discovery Timeline

  • 2021-09-20 - CVE-2020-21913 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-21913

Vulnerability Analysis

This vulnerability is classified as CWE-416 (Use After Free), a memory corruption issue that occurs when a program continues to use a memory pointer after the memory it references has been freed. In the context of ICU's pkgdata tool, the pkg_createWithAssemblyCode function improperly manages memory lifecycle, allowing access to deallocated memory regions.

The attack requires local access and user interaction, meaning an attacker would need to convince a user to process a malicious file or input with the vulnerable ICU pkgdata utility. While the vulnerability does not allow for data exfiltration or integrity violations, it can reliably cause application crashes, resulting in denial of service.

Root Cause

The root cause lies in improper memory management within the pkg_createWithAssemblyCode function in tools/pkgdata/pkgdata.cpp. The function deallocates memory but retains a pointer that is subsequently dereferenced, triggering the use after free condition. This type of vulnerability typically occurs when object lifecycle management is not properly synchronized across different code paths.

Attack Vector

The vulnerability requires local access to the system and user interaction to exploit. An attacker would need to craft malicious input that triggers the vulnerable code path in the pkgdata tool. When the pkg_createWithAssemblyCode function processes this input, it incorrectly accesses freed memory, causing unpredictable behavior including application crashes. The attack primarily results in availability impact through denial of service.

The vulnerability manifests in the pkgdata utility's assembly code generation functionality. When processing certain inputs, the function fails to properly track memory allocations, leading to dangling pointer access after deallocation. Technical details can be found in the ICU Jira Issue ICU-20850 and the corresponding GitHub Pull Request #886.

Detection Methods for CVE-2020-21913

Indicators of Compromise

  • Unexpected crashes or segmentation faults in applications using ICU libraries
  • Core dumps showing memory access violations in pkgdata or ICU-related processes
  • Application log entries indicating memory corruption or invalid pointer access in ICU components

Detection Strategies

  • Monitor for abnormal termination of processes utilizing ICU libraries, particularly the pkgdata tool
  • Implement memory sanitizers (AddressSanitizer, Valgrind) in development and testing environments to detect use after free conditions
  • Deploy application-level monitoring to detect repeated crashes in internationalization-dependent services

Monitoring Recommendations

  • Enable crash reporting and analysis for applications that depend on ICU libraries
  • Audit systems for vulnerable ICU versions using software composition analysis tools
  • Monitor system logs for repeated application failures that may indicate exploitation attempts

How to Mitigate CVE-2020-21913

Immediate Actions Required

  • Update ICU to a patched version that addresses the use after free vulnerability
  • Apply security updates from Debian for affected systems (DSA-5014 for stable, DLA-2780 for LTS)
  • Inventory all systems and applications that use ICU libraries to identify vulnerable deployments
  • Restrict access to the pkgdata utility to trusted users only

Patch Information

Unicode has addressed this vulnerability through GitHub Pull Request #886. The fix corrects the memory management issue in the pkg_createWithAssemblyCode function.

For Debian users, security patches are available:

  • Debian Security Advisory DSA-5014 for Debian stable releases
  • Debian LTS Announcement DLA-2780 for Debian 9 LTS

Workarounds

  • Limit use of the pkgdata tool to trusted inputs and controlled environments
  • Implement process isolation for applications using ICU to contain potential crashes
  • Consider sandboxing ICU-dependent applications to minimize impact of exploitation
bash
# Verify ICU version on Debian systems
dpkg -l | grep libicu

# Update ICU packages on Debian
sudo apt-get update && sudo apt-get upgrade libicu63

# For Debian 10 (Buster)
sudo apt-get install libicu63=63.1-6+deb10u2

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechUnicode International Components For Unicode

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Debian LTS Announcement

  • Debian Security Advisory
  • Vendor Resources
  • GitHub Pull Request

  • ICU Jira Issue
  • 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