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-2022-27444

CVE-2022-27444: MariaDB Server DoS Vulnerability

CVE-2022-27444 is a denial of service vulnerability in MariaDB Server v10.9 and below causing segmentation faults. This article covers the technical details, affected versions, security impact, and mitigation strategies.

Published: February 17, 2026

CVE-2022-27444 Overview

CVE-2022-27444 is a segmentation fault vulnerability discovered in MariaDB Server v10.9 and below. The vulnerability exists within the sql/item_subselect.cc component, which handles subselect query processing. When exploited, this vulnerability can cause the database server to crash, resulting in a denial of service condition that disrupts database availability for all connected applications and services.

Critical Impact

A remote attacker can trigger a segmentation fault in MariaDB Server, causing service disruption and potential database unavailability for dependent applications.

Affected Products

  • MariaDB Server v10.9 and below
  • MariaDB Server v10.2 series (prior to fix)
  • MariaDB Server v10.3 through v10.8 series (prior to fix)

Discovery Timeline

  • 2022-04-14 - CVE-2022-27444 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-27444

Vulnerability Analysis

This vulnerability is classified as a Null Pointer Dereference DoS issue that manifests within MariaDB's subselect query handling code. The sql/item_subselect.cc component is responsible for processing SQL subqueries, and under specific conditions, the code fails to properly validate memory references before accessing them.

When a malformed or specially crafted query is executed, the database server encounters an invalid memory access condition, resulting in a segmentation fault. This causes the MariaDB server process to terminate unexpectedly, denying service to all connected clients and applications relying on the database.

The attack can be executed remotely over the network without requiring any authentication or user interaction, making it particularly dangerous for internet-facing database deployments or environments where untrusted users can execute queries.

Root Cause

The root cause of CVE-2022-27444 lies in improper memory handling within the item_subselect.cc component. The code fails to perform adequate null pointer or boundary checks before dereferencing memory addresses during subselect query processing. This results in the operating system's memory protection mechanisms terminating the process when an invalid memory access is attempted.

Attack Vector

The vulnerability can be exploited through network-based attacks where an attacker sends specially crafted SQL queries to the MariaDB server. The attack characteristics include:

  • Network-accessible: The vulnerability can be triggered remotely without physical access to the server
  • No privileges required: An attacker does not need authenticated access to potentially exploit this vulnerability
  • No user interaction: The attack can be executed automatically without any user action
  • Availability impact: Successful exploitation results in complete denial of database service

The vulnerability specifically targets the subselect query processing pathway. An attacker would craft a malicious SQL query containing subselect statements designed to trigger the segmentation fault condition in the item_subselect.cc code path.

Detection Methods for CVE-2022-27444

Indicators of Compromise

  • Unexpected MariaDB server process termination or crashes in system logs
  • Segmentation fault entries in /var/log/mysql/ or MariaDB error logs referencing item_subselect.cc
  • Sudden database unavailability followed by automatic restart attempts
  • Core dump files generated by the MariaDB process

Detection Strategies

  • Monitor MariaDB error logs for segmentation fault messages and unexpected process terminations
  • Implement database query auditing to identify unusual or malformed subselect queries
  • Deploy SentinelOne Singularity Platform to detect anomalous process behavior and crash patterns
  • Set up alerting for MariaDB service availability and automatic restart events

Monitoring Recommendations

  • Enable detailed MariaDB general query logging during investigation periods to capture potential exploitation attempts
  • Configure system monitoring to alert on MariaDB process crashes and automatic restarts
  • Implement network-level SQL query inspection for suspicious subselect query patterns
  • Monitor for elevated connection failures that may indicate service disruption

How to Mitigate CVE-2022-27444

Immediate Actions Required

  • Upgrade MariaDB Server to a patched version that addresses MDEV-28080
  • Review and restrict database access to trusted networks and authenticated users only
  • Implement query timeout limits to reduce impact of malicious queries
  • Enable query logging to detect potential exploitation attempts

Patch Information

MariaDB has addressed this vulnerability through their issue tracking system under MDEV-28080. Organizations should consult the MariaDB release notes to identify the specific version containing the fix for their deployment branch.

Additional security guidance is available through the NetApp Security Advisory ntap-20220526-0006 for NetApp environments utilizing MariaDB.

Administrators should upgrade to the latest stable release of their MariaDB branch that includes the patch for this vulnerability.

Workarounds

  • Restrict network access to the MariaDB server using firewall rules to limit exposure
  • Implement application-level query validation to filter potentially dangerous subselect patterns
  • Deploy a database proxy or web application firewall capable of SQL query inspection
  • Limit database user privileges to the minimum required for application functionality
  • Configure automatic service restart with monitoring to minimize downtime during attacks
bash
# Configuration example - Restrict MariaDB network access
# /etc/mysql/mariadb.conf.d/50-server.cnf

# Bind MariaDB to localhost only if external access is not required
bind-address = 127.0.0.1

# Set query timeout to limit impact of malicious queries
max_statement_time = 30

# Enable general query log for monitoring (use cautiously in production)
general_log = 1
general_log_file = /var/log/mysql/general.log

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechMariadb

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Technical References
  • NetApp Security Advisory ntap-20220526-0006
  • Vendor Resources
  • MariaDB Issue Tracker Entry
  • Related CVEs
  • CVE-2022-47015: MariaDB Server DoS Vulnerability

  • CVE-2022-32085: MariaDB DoS Vulnerability

  • CVE-2022-32083: MariaDB Segmentation Fault Vulnerability

  • CVE-2021-46667: MariaDB 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
  • 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