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-2026-28224

CVE-2026-28224: Firebird Database DoS Vulnerability

CVE-2026-28224 is a denial of service flaw in Firebird Database that allows unauthenticated attackers to crash the server via null pointer dereference. This article covers technical details, affected versions, and patches.

Published: April 23, 2026

CVE-2026-28224 Overview

CVE-2026-28224 is a Null Pointer Dereference vulnerability affecting Firebird, an open-source relational database management system. When the Firebird server receives an op_crypt_key_callback packet without prior authentication, the port_server_crypt_callback handler is not properly initialized, resulting in a null pointer dereference and immediate server crash. This vulnerability allows an unauthenticated attacker who knows only the server's IP address and port to remotely crash the database server, causing a denial of service condition.

Critical Impact

Unauthenticated remote attackers can crash Firebird database servers with a single malformed packet, causing complete service disruption without any authentication required.

Affected Products

  • Firebird versions prior to 5.0.4
  • Firebird versions prior to 4.0.7
  • Firebird versions prior to 3.0.14

Discovery Timeline

  • April 17, 2026 - CVE-2026-28224 published to NVD
  • April 20, 2026 - Last updated in NVD database

Technical Details for CVE-2026-28224

Vulnerability Analysis

This vulnerability exists in Firebird's network protocol handling for encrypted communication setup. The Firebird server implements a callback mechanism for cryptographic key exchange via the op_crypt_key_callback operation. Under normal circumstances, this callback handler (port_server_crypt_callback) is initialized during the authentication handshake before any encryption-related operations occur.

The vulnerability arises because the server does not validate that authentication has been completed before processing op_crypt_key_callback packets. When an unauthenticated client sends this packet type directly to the server, the code attempts to invoke the port_server_crypt_callback handler, which remains uninitialized (null). This results in a null pointer dereference, causing the server process to crash immediately.

The attack is trivial to execute—an attacker needs only network access to the Firebird port (typically TCP 3050) and can send the malformed packet without any credentials or prior knowledge of the database structure.

Root Cause

The root cause is improper state validation in the network protocol handler. The server fails to verify that the connection has progressed through the required authentication phase before accepting cryptographic callback packets. This represents a classic CWE-476 (NULL Pointer Dereference) vulnerability where input validation does not ensure prerequisite state conditions are met before accessing handler pointers.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can exploit this vulnerability by:

  1. Establishing a TCP connection to the Firebird server port (default: 3050)
  2. Sending a crafted op_crypt_key_callback packet immediately, bypassing authentication
  3. The server attempts to dereference the uninitialized port_server_crypt_callback pointer
  4. The null pointer dereference causes an immediate server crash

The vulnerability enables a complete denial of service against any exposed Firebird database server. The attack can be repeated indefinitely, preventing the database from maintaining availability even if automatic restart mechanisms are in place.

Detection Methods for CVE-2026-28224

Indicators of Compromise

  • Unexpected Firebird server crashes or restarts without corresponding database errors
  • Connection attempts to Firebird port (3050) that do not complete authentication
  • Server crash dumps showing null pointer dereference in cryptographic callback handling code
  • Sudden service termination events in Firebird logs correlating with network connection events

Detection Strategies

  • Monitor for repeated Firebird service crashes or automatic restarts in short time windows
  • Implement network intrusion detection rules to identify malformed op_crypt_key_callback packets sent before authentication completion
  • Configure application-level monitoring to alert on Firebird process termination signals (SIGSEGV, SIGABRT)
  • Deploy SentinelOne Singularity to detect abnormal process termination patterns indicative of exploitation

Monitoring Recommendations

  • Enable detailed logging on Firebird servers to capture connection state before crashes
  • Monitor network traffic to Firebird ports for connections that disconnect immediately after establishing TCP handshake
  • Implement availability monitoring with alerts on Firebird service downtime
  • Track process crash events on database servers through endpoint detection and response (EDR) solutions

How to Mitigate CVE-2026-28224

Immediate Actions Required

  • Upgrade Firebird to patched versions: 5.0.4, 4.0.7, or 3.0.14 depending on your major version branch
  • Restrict network access to Firebird database ports using firewall rules to allow only trusted client IP addresses
  • Place Firebird servers behind network segmentation that prevents direct external access
  • Implement service monitoring and automatic restart to minimize downtime during any exploitation attempts

Patch Information

Firebird has released security patches addressing this vulnerability in the following versions:

BranchFixed VersionRelease Notes
5.x5.0.4FirebirdSQL v5.0.4 Release Notes
4.x4.0.7FirebirdSQL v4.0.7 Release Notes
3.x3.0.14FirebirdSQL v3.0.14 Release Notes

For complete details on the vulnerability, refer to the GitHub Security Advisory GHSA-xrcw-wpjx-pr95.

Workarounds

  • Apply firewall rules to restrict Firebird port access to only authorized client IP addresses or network ranges
  • Deploy a reverse proxy or application-layer gateway that validates connection state before forwarding to Firebird
  • Use VPN or SSH tunneling for all remote database connections to prevent direct exposure
  • If immediate patching is not possible, consider temporarily disabling external network access to the database server
bash
# Example: Restrict Firebird access using iptables (Linux)
# Only allow connections from trusted network 192.168.1.0/24
iptables -A INPUT -p tcp --dport 3050 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 3050 -j DROP

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechFirebird

  • SeverityHIGH

  • CVSS Score8.2

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • FirebirdSQL v3.0.14 Release Notes

  • FirebirdSQL v4.0.7 Release Notes

  • FirebirdSQL v5.0.4 Release Notes

  • GitHub Security Advisory GHSA-xrcw-wpjx-pr95
  • Related CVEs
  • CVE-2026-28214: Firebird Database DoS Vulnerability

  • CVE-2026-35215: Firebird Database DOS Vulnerability

  • CVE-2026-28212: Firebird Database DoS Vulnerability

  • CVE-2026-34232: Firebird Database DoS 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