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-2025-62789

CVE-2025-62789: Wazuh Platform DOS Vulnerability

CVE-2025-62789 is a denial of service vulnerability in Wazuh Platform caused by improper null pointer validation. A compromised agent can crash analysisd with crafted messages. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 4, 2026

CVE-2025-62789 Overview

CVE-2025-62789 is a denial-of-service vulnerability in Wazuh, an open source platform for threat prevention, detection, and response. The flaw exists in the fim_alert() implementation, which fails to verify that the return value of ctime_r is non-NULL before passing it to strdup(). A compromised Wazuh agent can send a specially crafted message to the Wazuh manager, triggering a NULL pointer dereference in analysisd. The crash makes the manager's analysis daemon unavailable, disrupting detection and alerting capabilities. Wazuh fixed this issue in version 4.11.0. The weakness is classified under [CWE-252] (Unchecked Return Value).

Critical Impact

A compromised agent can crash the Wazuh manager's analysisd process, disabling threat detection and alerting across the monitored environment.

Affected Products

  • Wazuh versions prior to 4.11.0
  • Wazuh Manager (analysisd component)
  • Deployments accepting messages from Wazuh agents

Discovery Timeline

  • 2025-10-29 - CVE-2025-62789 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2025-62789

Vulnerability Analysis

The vulnerability resides in the fim_alert() function within the Wazuh manager's analysisd daemon. File Integrity Monitoring (FIM) alerts received from agents are processed using ctime_r() to format timestamp values. The standard library function ctime_r() can return NULL when given an invalid time_t value. Wazuh's implementation does not validate the return pointer before passing it to strdup(). Calling strdup(NULL) invokes strlen(NULL), which dereferences a NULL pointer and crashes the process.

Because analysisd is the central correlation and alerting engine, its termination halts rule evaluation, alert generation, and event archiving. Operators lose visibility until the daemon is restarted, and a persistent attacker can repeat the trigger to keep it offline.

Root Cause

The defect is an unchecked library return value [CWE-252]. The code assumes ctime_r() always succeeds. Supplying a malformed or out-of-range timestamp through an agent message produces a NULL return that the subsequent strdup() call cannot tolerate.

Attack Vector

Exploitation requires an attacker to control or compromise a Wazuh agent already enrolled with the manager. The attacker crafts an FIM event containing a timestamp value that causes ctime_r() to fail. The manager parses the message, calls fim_alert(), and crashes when strdup() dereferences the NULL pointer. No authentication beyond the existing agent registration is required, and no user interaction is involved.

Refer to the Wazuh GitHub Security Advisory GHSA-8rvq-mm2f-8q22 for vendor details.

Detection Methods for CVE-2025-62789

Indicators of Compromise

  • Unexpected termination or repeated restarts of the wazuh-analysisd process on the manager.
  • Gaps in alert generation or event correlation timelines without a corresponding configuration change.
  • Malformed FIM event messages originating from a single agent immediately preceding daemon failure.

Detection Strategies

  • Monitor ossec.log and analysisd logs for crash signatures, segmentation faults, or abnormal exit codes.
  • Correlate agent message volume and content patterns to identify outliers sending malformed FIM payloads.
  • Track the running state of wazuh-analysisd via systemd or process supervisors and alert on unscheduled exits.

Monitoring Recommendations

  • Forward Wazuh manager system logs to a central SIEM and create rules for analysisd crashes.
  • Baseline normal FIM event structure per agent and flag deviations in timestamp fields.
  • Audit agent enrollments and revoke keys for agents exhibiting suspicious or anomalous behavior.

How to Mitigate CVE-2025-62789

Immediate Actions Required

  • Upgrade all Wazuh manager instances to version 4.11.0 or later.
  • Inventory and rotate agent keys for any agents suspected of compromise.
  • Restrict network access to the manager's agent communication port (default 1514) to trusted agent subnets only.

Patch Information

The vulnerability is fixed in Wazuh 4.11.0. The patch adds a NULL check on the ctime_r() return value before invoking strdup() inside fim_alert(). Apply the official release from the Wazuh GitHub Security Advisory.

Workarounds

  • Limit agent enrollment to vetted hosts and enforce strict key management to reduce the population of agents capable of triggering the bug.
  • Configure process supervision to automatically restart wazuh-analysisd if it terminates, reducing the window of unavailability.
  • Network-segment the Wazuh manager so only authorized agents can reach the manager's listening ports.
bash
# Upgrade Wazuh manager on Debian/Ubuntu to a fixed release
sudo apt-get update
sudo apt-get install --only-upgrade wazuh-manager
systemctl restart wazuh-manager
/var/ossec/bin/wazuh-control info | grep VERSION

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechWazuh

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-252
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-26204: Wazuh Heap-Based DoS Vulnerability

  • CVE-2026-32983: Wazuh Manager authd Service DoS Flaw

  • CVE-2025-15615: Wazuh Manager authd Service DoS Flaw

  • CVE-2026-25771: Wazuh Platform 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