banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-22693

CVE-2026-22693: HarfBuzz Buffer Overflow Vulnerability

CVE-2026-22693 is a buffer overflow vulnerability in HarfBuzz text shaping engine caused by a null pointer dereference in SubtableUnicodesCache::create. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22693 Overview

CVE-2026-22693 is a Null Pointer Dereference vulnerability in HarfBuzz, a widely-used open-source text shaping engine. The vulnerability exists in the SubtableUnicodesCache::create function located in src/hb-ot-cmap-table.hh. The function fails to properly validate the return value of hb_malloc before using placement new to construct an object at the returned pointer address, leading to undefined behavior and potential denial of service when memory allocation fails.

Critical Impact

Applications using vulnerable HarfBuzz versions may crash with a Segmentation Fault when memory allocation fails, potentially enabling denial of service attacks in resource-constrained environments.

Affected Products

  • HarfBuzz versions prior to 12.3.0
  • Applications and libraries depending on vulnerable HarfBuzz versions
  • Systems using custom memory allocators with HarfBuzz

Discovery Timeline

  • 2026-01-10 - CVE CVE-2026-22693 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2026-22693

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference). The issue stems from improper error handling in memory allocation within the HarfBuzz text shaping engine. When the SubtableUnicodesCache::create function calls hb_malloc to allocate memory for a new cache object, it does not verify whether the allocation succeeded before proceeding to use placement new syntax on the returned pointer.

Under normal operating conditions with sufficient memory, hb_malloc returns a valid pointer and the code functions correctly. However, when memory allocation fails due to low-memory conditions or when using custom allocators that simulate allocation failures, hb_malloc returns NULL. The subsequent placement new operation on this null pointer results in undefined behavior, manifesting as a Segmentation Fault that can crash the application.

Root Cause

The root cause is a missing NULL check after the hb_malloc call in the SubtableUnicodesCache::create function. The C++ placement new operator does not inherently protect against null pointers—it assumes the provided memory address is valid. By failing to validate the allocation result, the code violates safe memory handling practices and introduces a crash condition that can be triggered when system resources are exhausted or artificially constrained.

Attack Vector

An attacker could potentially exploit this vulnerability through network-accessible attack vectors by forcing memory exhaustion conditions or by leveraging applications that use custom memory allocators. In scenarios where an attacker can influence memory pressure on a target system, they could trigger allocation failures that cause the vulnerable code path to execute, resulting in application crashes and denial of service.

The following patch demonstrates the security fix applied in version 12.3.0:

text
   {
     SubtableUnicodesCache* cache =
         (SubtableUnicodesCache*) hb_malloc (sizeof(SubtableUnicodesCache));

+    if (unlikely (!cache))
+      return nullptr;
+
     new (cache) SubtableUnicodesCache (source_table);
     return cache;
   }

Source: GitHub Commit Update

Detection Methods for CVE-2026-22693

Indicators of Compromise

  • Unexpected application crashes with Segmentation Fault errors in processes using HarfBuzz
  • Core dumps containing stack traces pointing to SubtableUnicodesCache::create or hb-ot-cmap-table.hh
  • Increased memory pressure or allocation failures preceding application crashes
  • Repeated crashes in text rendering or font processing operations

Detection Strategies

  • Monitor application logs for Segmentation Fault signals (SIGSEGV) in processes linked to HarfBuzz
  • Implement crash reporting to identify patterns related to memory allocation failures in text shaping operations
  • Use static analysis tools to scan for NULL pointer dereference vulnerabilities in codebases using HarfBuzz
  • Deploy runtime sanitizers (AddressSanitizer, UndefinedBehaviorSanitizer) in development and testing environments

Monitoring Recommendations

  • Enable crash telemetry for applications using HarfBuzz to detect exploitation attempts
  • Monitor system memory utilization to identify potential resource exhaustion attacks
  • Set up alerts for abnormal application restart patterns that may indicate DoS attempts
  • Review memory allocator logs if using custom allocators with HarfBuzz

How to Mitigate CVE-2026-22693

Immediate Actions Required

  • Upgrade HarfBuzz to version 12.3.0 or later immediately
  • Identify all applications and dependencies using vulnerable HarfBuzz versions
  • Implement memory monitoring to detect potential exploitation attempts
  • Review custom allocator implementations if used with HarfBuzz

Patch Information

The vulnerability has been patched in HarfBuzz version 12.3.0. The fix adds a proper NULL check after the hb_malloc call, returning nullptr gracefully when memory allocation fails instead of proceeding with undefined behavior. Organizations should update to the patched version as soon as possible. For detailed patch information, refer to the GitHub Security Advisory and the commit update.

Workarounds

  • Ensure adequate system memory resources to reduce likelihood of allocation failures
  • Implement process isolation and restart mechanisms to limit DoS impact
  • Configure resource limits (cgroups, ulimits) to prevent memory exhaustion from affecting critical services
  • Consider implementing application-level fault tolerance for text rendering failures
bash
# Verify HarfBuzz version and upgrade
pkg-config --modversion harfbuzz
# If version < 12.3.0, upgrade via package manager
# Debian/Ubuntu
sudo apt update && sudo apt install libharfbuzz-dev
# Fedora/RHEL
sudo dnf update harfbuzz
# Or compile from source with patched version
git clone https://github.com/harfbuzz/harfbuzz.git
cd harfbuzz && git checkout v12.3.0
meson build && ninja -C build

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechHarfbuzz

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-476
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory

  • OpenWall OSS Security Post

  • OpenWall OSS Security Post
  • Related CVEs
  • CVE-2024-56732: HarfBuzz Buffer Overflow Vulnerability

  • CVE-2026-0943: HarfBuzz::Shaper Null Pointer Vulnerability

  • CVE-2023-25193: Harfbuzz DoS Vulnerability

  • CVE-2022-33068: Harfbuzz Integer Overflow DoS Vulnerability
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
  • English
  • 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