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-2024-22051

CVE-2024-22051: Github Cmark-gfm RCE Vulnerability

CVE-2024-22051 is an integer overflow flaw in Github Cmark-gfm that enables remote attackers to corrupt heap memory and execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: April 8, 2026

CVE-2024-22051 Overview

CVE-2024-22051 is an integer overflow vulnerability affecting CommonMarker versions prior to 0.23.4 and the underlying GitHub cmark-gfm library. This vulnerability allows unauthenticated remote attackers to cause heap memory corruption when parsing specially crafted Markdown tables containing marker rows with more than UINT16_MAX columns. Successful exploitation can lead to information disclosure or remote code execution.

Critical Impact

This vulnerability enables remote attackers to execute arbitrary code or leak sensitive information without authentication by sending malicious Markdown content to applications using vulnerable CommonMarker versions.

Affected Products

  • GitHub cmark-gfm (versions prior to patched release)
  • gjtorikian CommonMarker (versions prior to 0.23.4)
  • Ruby applications using the CommonMarker gem for Markdown parsing

Discovery Timeline

  • 2024-01-04 - CVE-2024-22051 published to NVD
  • 2025-11-29 - Last updated in NVD database

Technical Details for CVE-2024-22051

Vulnerability Analysis

This vulnerability stems from improper handling of integer boundaries when processing Markdown tables in the CommonMarker library. When a table with an extremely large number of columns (exceeding UINT16_MAX or 65,535) is parsed, the internal counter overflows, leading to incorrect memory allocation calculations. The resulting heap memory corruption can be leveraged by attackers to achieve various malicious outcomes depending on memory layout and application context.

The attack is particularly dangerous because it can be triggered through normal document processing operations. Any application that accepts user-supplied Markdown content and renders it using vulnerable CommonMarker versions is potentially at risk. This includes web applications, documentation systems, content management platforms, and developer tools that support Markdown formatting.

Root Cause

The root cause is classified as CWE-190 (Integer Overflow or Wraparound). The vulnerability exists in the table parsing logic where the column count is stored in a 16-bit unsigned integer variable. When the number of columns exceeds 65,535 (UINT16_MAX), the counter wraps around to a small value, causing subsequent memory allocations to be insufficient for the actual data being processed. This mismatch between allocated buffer size and actual data written results in heap buffer overflow conditions.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by submitting Markdown content containing a maliciously crafted table to any application endpoint that processes Markdown using vulnerable CommonMarker versions.

The attack payload consists of a Markdown table with an excessive number of pipe characters (|) in the marker row, creating more than 65,535 column definitions. When the parser attempts to process this table, the integer overflow occurs during column counting, leading to undersized memory allocations and subsequent heap corruption during data population.

For detailed technical information about the vulnerability mechanism, refer to the GitHub Security Advisory for CommonMarker and the GitHub Security Advisory for cmark-gfm.

Detection Methods for CVE-2024-22051

Indicators of Compromise

  • Abnormally large Markdown files submitted to parsing endpoints containing extensive pipe (|) sequences
  • Application crashes or segmentation faults in processes handling Markdown content
  • Unusual memory consumption patterns in Markdown processing services
  • Error logs indicating heap corruption or memory access violations in CommonMarker-related code paths

Detection Strategies

  • Implement dependency scanning to identify CommonMarker versions prior to 0.23.4 and vulnerable cmark-gfm versions in your software inventory
  • Monitor application logs for parsing errors or unexpected crashes when processing user-submitted Markdown content
  • Deploy web application firewalls (WAF) with rules to detect and block requests containing excessive pipe characters in suspected Markdown payloads
  • Use static analysis tools to identify code paths where untrusted input flows to CommonMarker parsing functions

Monitoring Recommendations

  • Enable detailed logging for Markdown processing operations to capture input characteristics and processing outcomes
  • Set up alerting for memory-related exceptions in services that handle Markdown rendering
  • Monitor dependency vulnerability feeds for updates related to CommonMarker and cmark-gfm libraries
  • Track EPSS score changes for this CVE (currently at 7.131% probability, 91.524 percentile) to assess evolving exploitation likelihood

How to Mitigate CVE-2024-22051

Immediate Actions Required

  • Upgrade CommonMarker to version 0.23.4 or later immediately across all affected applications
  • Update cmark-gfm to the latest patched version in any direct integrations
  • Audit all applications in your environment that process Markdown content to identify vulnerable dependencies
  • Consider temporarily disabling table parsing functionality if immediate patching is not possible

Patch Information

The vulnerability has been addressed in CommonMarker version 0.23.4. The fix is available through the official commit. Additional details can be found in the GitHub Security Advisory and the VulnCheck Advisory.

Workarounds

  • Implement input validation to reject Markdown content with tables containing more than a reasonable number of columns (e.g., 1,000)
  • Sanitize incoming Markdown content to limit the number of consecutive pipe characters before passing to the parser
  • Run Markdown processing in sandboxed environments with limited privileges to reduce potential impact of successful exploitation
  • Consider using alternative Markdown parsing libraries temporarily until patches can be applied
bash
# Update CommonMarker gem to patched version
gem update commonmarker --version '>= 0.23.4'

# Verify installed version
gem list commonmarker

# For Bundler-managed applications, update Gemfile
# gem 'commonmarker', '>= 0.23.4'
bundle update commonmarker

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechGithub Cmark Gfm

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability7.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-190
  • Technical References
  • GitHub Security Advisory

  • GitHub Security Advisory

  • VulnCheck Advisory
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2022-24724: GitHub Cmark-gfm RCE 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