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
    • 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-23927

CVE-2026-23927: Agent 2 Information Disclosure Flaw

CVE-2026-23927 is an information disclosure vulnerability in Agent 2 that allows attackers to inject Oracle TNS connection strings and leak database credentials. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-23927 Overview

CVE-2026-23927 is a credential exposure vulnerability affecting Zabbix Agent 2. An authenticated user able to connect to Agent 2 can inject an Oracle Transparent Network Substrate (TNS) connection string through the service parameter. The injection causes Agent 2 to connect to an attacker-controlled server. If Oracle database credentials are stored in a named session, the agent leaks them to the malicious endpoint. The flaw maps to CWE-522: Insufficiently Protected Credentials.

Critical Impact

Attackers with privileged access to Agent 2 can exfiltrate stored Oracle database credentials by redirecting connection attempts to attacker-controlled servers.

Affected Products

  • Zabbix Agent 2 (Oracle monitoring plugin)
  • Deployments using named sessions with stored Oracle credentials
  • Environments where the service parameter is reachable by authenticated users

Discovery Timeline

  • 2026-05-06 - CVE-2026-23927 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-23927

Vulnerability Analysis

The vulnerability resides in how Zabbix Agent 2 processes the service parameter when establishing Oracle database connections. Agent 2 supports named sessions that allow operators to pre-configure database credentials. When a monitoring item is invoked, Agent 2 builds a TNS connection string using user-supplied input without sufficient validation. An attacker who can reach the agent can substitute a TNS descriptor that points to an arbitrary host and port. The Oracle client library then attempts authentication against the attacker-controlled listener and transmits the cached credentials. The result is server-side credential exfiltration triggered by an authenticated request to the agent.

Root Cause

The root cause is improper neutralization of input used to construct an Oracle TNS connection descriptor. The service parameter is concatenated into connection logic without enforcing an allow-list of pre-defined endpoints. This pattern aligns with [CWE-522], where stored credentials are released to an untrusted destination because the destination itself is not authenticated or validated.

Attack Vector

Exploitation requires network access to Agent 2 and the privileges needed to invoke Oracle monitoring keys. The attacker stands up a rogue TNS listener and supplies a crafted service value referencing that listener. Agent 2 retrieves the named session credentials, opens a connection to the attacker host, and submits the username and password during the Oracle authentication handshake. The attacker captures the credentials at the listener for later reuse against the legitimate Oracle database.

No verified public exploit code is available. Refer to the Zabbix Support Ticket ZBX-27759 for vendor-supplied technical details.

Detection Methods for CVE-2026-23927

Indicators of Compromise

  • Outbound TCP connections from Zabbix Agent 2 hosts to Oracle listener ports (default 1521) on unexpected destinations.
  • Agent 2 log entries showing Oracle plugin invocations with unusual or externally-resolvable hostnames in the service parameter.
  • DNS queries from Agent 2 hosts resolving domains not associated with internal database infrastructure.

Detection Strategies

  • Inspect Agent 2 request logs for service parameter values containing full TNS descriptors such as (DESCRIPTION=(ADDRESS=(HOST=...)).
  • Correlate monitoring item executions with subsequent egress connections from the agent host to identify redirected sessions.
  • Alert on Oracle authentication failures originating from Agent 2 hosts directed at non-inventoried database servers.

Monitoring Recommendations

  • Restrict and log every authenticated session permitted to issue Oracle plugin keys against Agent 2.
  • Baseline expected Oracle listener destinations for each Agent 2 host and alert on deviations.
  • Forward Agent 2 logs and host network telemetry to a centralized analytics platform for cross-source correlation.

How to Mitigate CVE-2026-23927

Immediate Actions Required

  • Review the Zabbix Support Ticket ZBX-27759 and apply the vendor-supplied fix once available.
  • Rotate any Oracle credentials stored in Agent 2 named sessions, especially where Agent 2 was reachable by lower-trust users.
  • Audit which accounts can issue Oracle monitoring keys against Agent 2 and remove unnecessary privileges.

Patch Information

Track the vendor advisory at Zabbix Support Ticket ZBX-27759 for fixed version availability. Upgrade Zabbix Agent 2 to the patched release as soon as it is published and re-deploy named session configurations afterward.

Workarounds

  • Avoid storing Oracle credentials in Agent 2 named sessions until the patch is applied; pass connection details only at invocation time from a trusted controller.
  • Apply network egress controls on Agent 2 hosts so only sanctioned Oracle listener IPs and ports are reachable.
  • Restrict inbound access to Agent 2 to the Zabbix server address and authenticated operators using TLS PSK or certificate authentication.

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOracle

  • SeverityMEDIUM

  • CVSS Score5.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:H/UI:N/VC:N/VI:L/VA:N/SC:H/SI:H/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
  • AvailabilityNone
  • CWE References
  • CWE-522
  • Technical References
  • Zabbix Support Ticket ZBX-27759
  • Related CVEs
  • CVE-2026-34313: Oracle FSAAI Information Disclosure Flaw

  • CVE-2026-34325: Oracle Financial Services Auth Bypass

  • CVE-2026-34314: Oracle Financial Services Privilege Escalation

  • CVE-2026-22010: Oracle Financial Services Auth Bypass Flaw
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