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

CVE-2026-22190: Panda3D Information Disclosure Vulnerability

CVE-2026-22190 is an information disclosure flaw in Panda3D egg-mkfont that allows attackers to read stack memory through format string injection. This post covers the technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2026-22190 Overview

CVE-2026-22190 is a format string vulnerability in Panda3D's egg-mkfont utility that allows attackers to disclose stack-resident memory and pointer values. The vulnerability exists in versions up to and including 1.10.16, where the -gp (glyph pattern) command-line option is passed directly as the format string argument to sprintf() with only a single argument supplied. This allows an attacker who can control the command-line input to inject additional format specifiers, causing the utility to read unintended stack values and write the formatted output into generated .egg and .png files.

Critical Impact

Attackers can leverage this format string vulnerability to extract sensitive stack memory contents, including pointer values, potentially aiding in further exploitation or bypass of security mechanisms like ASLR.

Affected Products

  • Panda3D versions up to and including 1.10.16
  • Panda3D egg-mkfont utility

Discovery Timeline

  • 2026-01-07 - CVE CVE-2026-22190 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-22190

Vulnerability Analysis

This vulnerability falls under CWE-134 (Use of Externally-Controlled Format String), a well-known class of security issues in C/C++ applications. The egg-mkfont tool, which is used to generate font assets for the Panda3D game engine, accepts a -gp parameter to define glyph patterns. This user-controlled input is passed directly to sprintf() as the format string without proper sanitization.

When an attacker includes format specifiers such as %x, %p, or %s in the -gp argument, the function reads additional values from the stack that were never intended to be accessed. The resulting formatted output is then written to the generated .egg and .png files, effectively embedding leaked memory contents into the output files.

The attack requires local access to execute the vulnerable utility with malicious arguments. While this limits the attack surface, it poses risks in environments where untrusted users can execute build tools or where automated build pipelines process untrusted input.

Root Cause

The root cause is the direct use of user-supplied input as a format string argument to sprintf(). The vulnerable code pattern passes the -gp command-line option value directly to sprintf() without any validation or sanitization. Secure coding practices dictate that format strings should always be static, with user input passed only as arguments to format specifiers.

The proper fix would involve using a static format string such as sprintf(buffer, "%s", user_input) instead of sprintf(buffer, user_input), or employing safer string handling functions altogether.

Attack Vector

The attack vector is local, requiring the attacker to have the ability to execute the egg-mkfont binary with crafted command-line arguments. An attacker would invoke the utility with format specifiers embedded in the -gp parameter value. For example, specifying patterns containing %x or %p format specifiers would cause the function to interpret subsequent stack values as arguments to format, leaking their contents into the output files.

The leaked information could include:

  • Stack pointer values that reveal memory layout
  • Return addresses useful for bypassing ASLR
  • Other sensitive data residing on the stack

This information disclosure could serve as a stepping stone for more sophisticated attacks if combined with other vulnerabilities.

Detection Methods for CVE-2026-22190

Indicators of Compromise

  • Unusual command-line arguments passed to egg-mkfont containing format specifiers like %x, %p, %n, or %s
  • Generated .egg or .png files containing unexpected hexadecimal values or memory addresses
  • Process execution logs showing egg-mkfont invoked with suspicious -gp parameter patterns
  • Audit logs indicating repeated execution of egg-mkfont with varying format string patterns

Detection Strategies

  • Monitor process execution for egg-mkfont with command-line arguments containing percent signs followed by format characters
  • Implement file integrity monitoring on build output directories to detect anomalous content in generated files
  • Deploy endpoint detection rules that flag command-line patterns matching format string exploitation attempts
  • Review build logs and CI/CD pipeline outputs for unexpected egg-mkfont invocations

Monitoring Recommendations

  • Enable command-line auditing on systems where Panda3D development tools are installed
  • Implement application whitelisting to control execution of development utilities
  • Monitor for new or modified .egg and .png files in unexpected locations
  • Set up alerts for process executions with anomalous argument patterns

How to Mitigate CVE-2026-22190

Immediate Actions Required

  • Upgrade Panda3D to a patched version when available from the vendor
  • Restrict execution permissions for egg-mkfont to trusted development users only
  • Audit any automated build processes that invoke egg-mkfont with external input
  • Review and sanitize any input sources that may supply the -gp parameter value

Patch Information

A security update addressing this vulnerability has been disclosed. Refer to the VulnCheck Advisory and the Full Disclosure Post for detailed patch information. Users should upgrade to the latest available version of Panda3D from the official website or the GitHub repository.

Workarounds

  • Avoid using the -gp option with any untrusted or user-controlled input
  • Wrap egg-mkfont execution in a script that validates and sanitizes the -gp parameter before passing it to the utility
  • Run egg-mkfont in a sandboxed or containerized environment to limit potential information disclosure impact
  • Use file permission controls to prevent unauthorized users from executing the vulnerable utility
bash
# Restrict egg-mkfont execution permissions
chmod 750 /path/to/panda3d/bin/egg-mkfont
chown root:developers /path/to/panda3d/bin/egg-mkfont

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechPanda3d

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/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-134
  • Technical References
  • GitHub Repository

  • Full Disclosure Post

  • Panda3D Official Website

  • VulnCheck Advisory
  • Related CVEs
  • CVE-2026-22188: Panda3D Deploy-Stub DoS Vulnerability

  • CVE-2026-22189: Panda3D Buffer Overflow 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