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

CVE-2024-21508: mysql2 Package RCE Vulnerability

CVE-2024-21508 is a remote code execution vulnerability in the mysql2 package affecting versions before 3.9.4. Attackers can exploit improper validation in the readCodeFor function. This article covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2024-21508 Overview

CVE-2024-21508 is a critical Remote Code Execution (RCE) vulnerability affecting the mysql2 npm package, a popular MySQL client for Node.js applications. Versions of the package before 3.9.4 are vulnerable to RCE via the readCodeFor function due to improper validation of the supportBigNumbers and bigNumberStrings configuration values. This vulnerability allows attackers to execute arbitrary code on systems running vulnerable versions of the mysql2 package.

Critical Impact

Attackers can achieve full remote code execution on affected Node.js applications by exploiting improper input validation in the mysql2 text parser, potentially leading to complete system compromise.

Affected Products

  • mysql2 npm package versions prior to 3.9.4
  • Node.js applications using vulnerable mysql2 versions
  • Any backend services utilizing mysql2 for MySQL database connectivity

Discovery Timeline

  • April 11, 2024 - CVE-2024-21508 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2024-21508

Vulnerability Analysis

This vulnerability is classified as CWE-94 (Improper Control of Generation of Code - Code Injection). The flaw exists in the readCodeFor function within the mysql2 text parser (text_parser.js). The root cause is improper validation of user-controllable configuration options, specifically the supportBigNumbers and bigNumberStrings parameters. When these values are not properly sanitized, an attacker who can influence the connection configuration can inject malicious code that gets executed during query result parsing.

The mysql2 package dynamically generates code based on configuration options to optimize performance when handling large numbers. However, insufficient input validation allows specially crafted configuration values to break out of the intended code context and execute arbitrary JavaScript code.

Root Cause

The vulnerability stems from improper validation of the supportBigNumbers and bigNumberStrings configuration values in the readCodeFor function. These parameters are intended to control how the parser handles large numeric values from MySQL, but the lack of proper sanitization allows attackers to inject arbitrary code through these configuration options. The parser dynamically constructs code based on these values without adequate input validation, creating a code injection vector.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker who can control or influence the mysql2 connection configuration parameters can exploit this vulnerability. This scenario may occur in applications that:

  • Accept database connection parameters from untrusted sources
  • Allow user-controlled configuration values to be passed to mysql2
  • Use environment variables or external configuration files that can be manipulated

When a vulnerable application processes a database query with malicious configuration values, the injected code executes within the Node.js process context, potentially granting the attacker complete control over the application and underlying system.

For detailed technical analysis of the exploitation technique, refer to the Slonser Blog Post which documents the attacker configuration methodology.

Detection Methods for CVE-2024-21508

Indicators of Compromise

  • Unexpected process spawning from Node.js applications using mysql2
  • Anomalous network connections originating from backend services
  • Unusual file system access patterns from Node.js processes
  • Modified or suspicious configuration values in mysql2 connection settings

Detection Strategies

  • Monitor application logs for unusual mysql2 configuration parameters
  • Implement runtime application self-protection (RASP) to detect code injection attempts
  • Use software composition analysis (SCA) tools to identify vulnerable mysql2 versions
  • Deploy network monitoring to detect suspicious outbound connections from Node.js applications

Monitoring Recommendations

  • Audit all mysql2 package versions across your Node.js applications using npm audit
  • Implement dependency scanning in CI/CD pipelines to catch vulnerable versions
  • Monitor for unusual JavaScript execution patterns in application runtime environments
  • Review database connection configuration sources for potential tampering

How to Mitigate CVE-2024-21508

Immediate Actions Required

  • Update mysql2 package to version 3.9.4 or later immediately
  • Audit all applications using mysql2 for vulnerable versions
  • Review configuration sources to ensure database connection parameters cannot be controlled by untrusted input
  • Implement input validation for any user-controllable configuration values

Patch Information

The vulnerability has been addressed in mysql2 version 3.9.4. The fix was implemented through GitHub Node MySQL2 Pull Request and committed via GitHub Node MySQL2 Commit. The patched version is available at GitHub Node MySQL2 Release v3.9.4. Additional vulnerability details are available in the Snyk Vulnerability Report.

Workarounds

  • Ensure supportBigNumbers and bigNumberStrings configuration options are explicitly set to boolean values and not derived from untrusted input
  • Validate all mysql2 configuration parameters before establishing connections
  • Implement application-level input sanitization for any configuration values that could influence database connections
  • Consider using a web application firewall (WAF) to filter potentially malicious configuration payloads
bash
# Update mysql2 to patched version
npm update mysql2@3.9.4

# Verify installed version
npm list mysql2

# Audit for vulnerable packages
npm audit

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechMysql2

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability55.59%

  • 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-94
  • Technical References
  • Slonser Blog Post

  • GitHub Node MySQL2 Parser Code

  • GitHub Node MySQL2 Commit

  • GitHub Node MySQL2 Pull Request

  • GitHub Node MySQL2 Release v3.9.4

  • Snyk Vulnerability Report
  • Related CVEs
  • CVE-2024-21512: mysql2 Prototype Pollution 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