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

CVE-2026-23921: Zabbix API SQL Injection Vulnerability

CVE-2026-23921 is a blind SQL injection flaw in Zabbix API that enables low-privilege users to exfiltrate database data via time-based techniques. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-23921 Overview

A blind SQL injection vulnerability exists in Zabbix's API service component located in include/classes/api/CApiService.php. A low privilege Zabbix user with API access can exploit this vulnerability by manipulating the sortfield parameter to execute arbitrary SQL SELECT statements. Although query results are not returned directly to the attacker, data can be exfiltrated through time-based inference techniques, potentially leading to session identifier disclosure and full administrator account compromise.

Critical Impact

Attackers with low-privilege API access can exfiltrate sensitive database information including session tokens, enabling complete administrator account takeover through time-based blind SQL injection techniques.

Affected Products

  • Zabbix installations with API access enabled
  • Systems with low-privilege users granted API permissions
  • Zabbix versions containing the vulnerable CApiService.php component

Discovery Timeline

  • 2026-03-24 - CVE-2026-23921 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23921

Vulnerability Analysis

This vulnerability falls under CWE-89 (SQL Injection), a critical class of web application security flaws where user-supplied input is improperly incorporated into SQL queries. The vulnerable code path resides within Zabbix's API service layer, specifically in the CApiService.php file that handles API request processing.

The vulnerability is network-accessible, meaning remote attackers can exploit it without requiring physical or local access to the target system. The attack complexity is low, as exploitation does not require specialized conditions or complex manipulation. While low-privilege credentials are required, the barrier to entry remains minimal in environments where API access is commonly granted to monitoring personnel or automated systems.

Successful exploitation can result in complete compromise of data confidentiality, integrity, and availability within the Zabbix database. The attacker can extract sensitive information including user credentials, session tokens, configuration data, and monitoring information stored in the database.

Root Cause

The root cause of this vulnerability is insufficient input validation and sanitization of the sortfield parameter within the CApiService.php file. The API endpoint fails to properly parameterize or escape user-supplied sorting field values before incorporating them into dynamically constructed SQL queries. This allows attackers to inject arbitrary SQL syntax that gets executed by the database engine.

When the API constructs ORDER BY clauses using the unsanitized sortfield parameter, attackers can append SQL injection payloads that alter the query's behavior. The lack of prepared statements or proper input whitelisting for sorting field names creates this exploitable condition.

Attack Vector

The attack leverages the Zabbix API's sorting functionality accessible to authenticated low-privilege users. An attacker crafts malicious API requests containing SQL injection payloads within the sortfield parameter. Since this is a blind SQL injection vulnerability, the attacker cannot directly observe query results in API responses.

Instead, attackers employ time-based inference techniques where conditional SQL statements cause measurable delays in server response times. By systematically injecting payloads that trigger delays based on data conditions (such as character comparisons), attackers can extract database contents byte-by-byte. This technique is commonly used to exfiltrate session identifiers, which can then be used to hijack administrator accounts.

The attack requires valid API credentials for a low-privilege Zabbix user, making it an authenticated attack vector. However, in many enterprise deployments, API access is granted to numerous monitoring accounts, expanding the potential attack surface.

Detection Methods for CVE-2026-23921

Indicators of Compromise

  • Unusual API requests containing SQL syntax characters (single quotes, semicolons, UNION, SLEEP, BENCHMARK, WAITFOR) in sortfield parameters
  • High volumes of API requests from single users with slight parameter variations indicating automated exploitation
  • Abnormally slow API response times that may indicate time-based injection testing
  • Database query logs showing malformed or suspicious ORDER BY clauses

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in API requests
  • Enable and monitor Zabbix API access logs for suspicious sortfield parameter values containing SQL keywords
  • Configure database query logging to identify anomalous queries originating from the Zabbix application
  • Deploy intrusion detection systems with signatures for common blind SQL injection techniques including time-based payloads

Monitoring Recommendations

  • Establish baseline metrics for API response times to detect time-based injection attempts causing artificial delays
  • Monitor for multiple failed or unusual API authentication attempts followed by successful exploitation patterns
  • Implement alerting on API requests containing common SQL injection test strings (e.g., 1' OR '1'='1, SLEEP(), BENCHMARK())
  • Review Zabbix user accounts regularly to ensure API access is granted only to necessary users

How to Mitigate CVE-2026-23921

Immediate Actions Required

  • Review and restrict API access permissions to essential users only, removing unnecessary low-privilege API accounts
  • Implement network-level access controls to limit API endpoint exposure to trusted IP ranges
  • Enable enhanced logging on Zabbix API endpoints to capture detailed request information for security monitoring
  • Consider temporarily disabling API access if not operationally critical until patches are applied

Patch Information

Zabbix has acknowledged this vulnerability and tracking information is available through the Zabbix Support Issue ZBX-27640. Organizations should monitor this support ticket and Zabbix security advisories for official patch releases and upgrade to the patched version as soon as it becomes available.

Review the official Zabbix security communications and apply vendor-recommended patches following standard change management procedures. Ensure all Zabbix components are updated consistently to maintain compatibility.

Workarounds

  • Implement a reverse proxy or WAF in front of Zabbix API endpoints with SQL injection filtering rules
  • Restrict API access to only essential IP addresses using firewall rules or Zabbix's built-in access control mechanisms
  • Audit and reduce the number of users with API access permissions, applying principle of least privilege
  • Consider implementing additional authentication requirements for API access such as client certificates
bash
# Configuration example - Restrict API access via web server (Apache example)
# Add to Zabbix Apache configuration to limit API access by IP
<Location /api_jsonrpc.php>
    Require ip 10.0.0.0/8
    Require ip 192.168.1.0/24
</Location>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechZabbix

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • Zabbix Support Issue ZBX-27640
  • Related CVEs
  • CVE-2024-42327: Zabbix SQL Injection Vulnerability

  • CVE-2024-22120: Zabbix Server SQL Injection Vulnerability

  • CVE-2026-23919: Zabbix Information Disclosure Vulnerability

  • CVE-2026-23924: Zabbix Agent 2 Information Disclosure
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