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

CVE-2026-25790: Wazuh Buffer Overflow Vulnerability

CVE-2026-25790 is a stack-based buffer overflow in Wazuh's SCA decoder that enables remote attackers to crash the manager or execute code. This article covers technical details, affected versions, and mitigation steps.

Published: March 20, 2026

CVE-2026-25790 Overview

CVE-2026-25790 is a stack-based buffer overflow vulnerability affecting the Wazuh Security Configuration Assessment (SCA) decoder component (wazuh-analysisd). The vulnerability stems from unsafe use of sprintf with unbounded floating-point format specifiers on fixed-size stack buffers, enabling remote attackers to trigger denial of service or potentially achieve remote code execution on vulnerable Wazuh manager instances.

Critical Impact

Remote attackers can crash the Wazuh manager or potentially execute arbitrary code by sending specially crafted JSON events with large exponential floating-point numbers, compromising the security monitoring infrastructure.

Affected Products

  • Wazuh versions 3.9.0 through 4.14.2
  • Wazuh Manager (wazuh-analysisd component)
  • Security Configuration Assessment (SCA) decoder module

Discovery Timeline

  • 2026-03-17 - CVE-2026-25790 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-25790

Vulnerability Analysis

This stack-based buffer overflow (CWE-121) affects the SCA decoder within the Wazuh analysis daemon. The vulnerable code path exists in the /src/analysisd/decoders/security_configuration_assessment.c file, specifically within the FillScanInfo and FillCheckEventInfo functions.

When processing incoming JSON events, these functions allocate a 128-byte stack buffer (char value[OS_SIZE_128];) to hold string representations of numeric values. The code determines whether each number is an integer or double-precision floating-point. For floating-point values, an unbounded sprintf(value, "%lf", ...) call converts the number to its string representation.

The critical flaw emerges when processing floating-point numbers with large exponents. A value such as 1.0e150 requires its full decimal expansion for string representation—a "1" followed by 150 zeros—which vastly exceeds the 128-byte buffer capacity. This overflow corrupts adjacent stack memory, potentially overwriting return addresses and enabling control-flow hijacking.

Root Cause

The root cause is the use of unbounded sprintf with the %lf format specifier for double-precision floating-point conversion without accounting for worst-case output length. Unlike integer conversions with predictable maximum lengths, floating-point numbers in exponential notation can expand to extremely long decimal strings during conversion. The lack of bounds checking or use of safer alternatives like snprintf with explicit length limits allows stack corruption when malicious input is processed.

Attack Vector

The attack vector is network-based, targeting the JSON event processing pipeline of the Wazuh manager. An attacker with high-privilege access to submit events to the Wazuh manager can craft a malicious JSON payload containing floating-point numbers with extremely large exponents. When the SCA decoder processes this event, the sprintf call attempts to write a string representation far exceeding the allocated buffer, overflowing onto the stack.

The attack flow involves sending a JSON event with a numeric field set to a value like 1.0e150 or similar large-exponent floating-point number. When this reaches the FillScanInfo or FillCheckEventInfo functions, the conversion overflows the stack buffer. Depending on stack layout and exploit sophistication, this can result in immediate process crash (denial of service) or controlled code execution if the attacker crafts the payload to overwrite return addresses with desired values.

For technical implementation details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-25790

Indicators of Compromise

  • Unexpected crashes or restarts of the wazuh-analysisd process
  • Core dumps showing stack corruption in security_configuration_assessment.c functions
  • JSON events containing floating-point numbers with unusually large exponents (e.g., 1.0e100 or higher)
  • Anomalous network traffic patterns targeting the Wazuh manager event submission endpoints

Detection Strategies

  • Monitor wazuh-analysisd process stability and capture core dumps for forensic analysis
  • Implement input validation at network boundaries to detect JSON payloads with extreme floating-point values
  • Deploy SentinelOne Singularity to detect memory corruption exploitation attempts and anomalous process behavior
  • Review Wazuh manager logs for repeated decoder failures or unexpected event processing errors

Monitoring Recommendations

  • Configure process monitoring to alert on wazuh-analysisd unexpected terminations
  • Implement log aggregation to correlate potential exploitation attempts across multiple Wazuh instances
  • Use SentinelOne's behavioral AI to detect post-exploitation activities following successful code execution

How to Mitigate CVE-2026-25790

Immediate Actions Required

  • Upgrade Wazuh to version 4.14.3 or later immediately
  • Audit network access controls to the Wazuh manager to restrict event submission to trusted sources
  • Review existing authentication mechanisms for event submission endpoints
  • Enable enhanced logging to detect potential exploitation attempts during the upgrade window

Patch Information

Wazuh has released version 4.14.3 which addresses this vulnerability by implementing proper bounds checking for floating-point to string conversions. Organizations should prioritize upgrading all Wazuh manager instances to this patched version. For detailed patch information and upgrade instructions, consult the Wazuh GitHub Security Advisory.

Workarounds

  • Restrict network access to the Wazuh manager event submission interfaces using firewall rules
  • Implement a reverse proxy with input validation to filter JSON events containing suspicious floating-point values
  • Deploy SentinelOne Singularity endpoint protection on Wazuh manager hosts to detect and prevent exploitation attempts
  • Consider temporarily disabling the SCA decoder if not critical to operations until patching is complete
bash
# Example: Restrict access to Wazuh manager using iptables
# Allow only trusted agent networks to communicate with the manager
iptables -A INPUT -p tcp --dport 1514 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 1514 -j DROP

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechWazuh

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-121
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2023-7340: Wazuh authd Buffer Overflow Vulnerability

  • CVE-2026-32984: Wazuh Buffer Overflow Vulnerability

  • CVE-2026-25772: Wazuh Buffer Overflow Vulnerability

  • CVE-2026-32983: Wazuh Manager authd Service DoS Flaw
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