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

CVE-2025-62791: Wazuh Denial of Service Vulnerability

CVE-2025-62791 is a denial of service flaw in Wazuh that allows compromised agents to crash analysisd through crafted messages. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 29, 2026

CVE-2025-62791 Overview

CVE-2025-62791 is a Null Pointer Dereference vulnerability affecting Wazuh, a free and open source platform used for threat prevention, detection, and response. The vulnerability exists in the DecodeCiscat() function implementation, which fails to check the return value of cJSON_GetObjectItem() for a possible NULL value in case of an error. This oversight allows a compromised agent to crash the analysisd component by sending a specially crafted message to the Wazuh manager.

Critical Impact

A compromised agent or attacker capable of crafting malicious messages can cause the Wazuh manager's analysisd process to crash, resulting in denial of service and potential loss of security monitoring capabilities.

Affected Products

  • Wazuh versions prior to 4.11.0

Discovery Timeline

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

Technical Details for CVE-2025-62791

Vulnerability Analysis

This vulnerability stems from improper error handling in the DecodeCiscat() function within the Wazuh codebase. The function uses cJSON_GetObjectItem() to parse JSON data from agent messages but does not validate whether the returned pointer is NULL before dereferencing it. In C programming, when cJSON_GetObjectItem() cannot find the requested key or encounters a parsing error, it returns NULL. Attempting to access members of a NULL pointer results in undefined behavior, typically manifesting as a segmentation fault that crashes the process.

The vulnerability is classified under CWE-252 (Unchecked Return Value) and CWE-476 (NULL Pointer Dereference), highlighting the dual nature of the flaw: both the failure to check return values and the subsequent unsafe pointer dereference.

Root Cause

The root cause is the absence of NULL pointer validation after calling cJSON_GetObjectItem() in the DecodeCiscat() function. The function assumes that JSON parsing will always succeed and that all expected fields will be present in the incoming message. When a malformed or malicious message is received that lacks expected fields or contains invalid JSON structures, the parsing function returns NULL, which is then dereferenced without proper validation.

Attack Vector

The attack vector is network-based, requiring an attacker to either compromise an existing Wazuh agent or have the ability to send crafted messages that mimic agent communications to the Wazuh manager. The attack flow involves:

  1. The attacker crafts a specially formatted message that will cause cJSON_GetObjectItem() to return NULL when processed by DecodeCiscat()
  2. The malicious message is sent to the Wazuh manager through the agent-manager communication channel
  3. When analysisd processes the message, it attempts to dereference the NULL pointer
  4. The analysisd process crashes, disrupting security monitoring and event analysis

The vulnerability does not require user interaction and can be exploited remotely, though it requires network access to the Wazuh manager's agent communication interface. The impact is limited to availability (denial of service) with no direct confidentiality or integrity impact.

Detection Methods for CVE-2025-62791

Indicators of Compromise

  • Unexpected crashes or restarts of the analysisd process on Wazuh manager
  • Segmentation fault errors in Wazuh manager logs associated with analysisd
  • Abnormal or malformed messages in agent-to-manager communication logs
  • Gaps in security event processing or monitoring coverage

Detection Strategies

  • Monitor Wazuh manager process stability, specifically tracking analysisd process crashes and restarts
  • Implement log analysis for segmentation fault signals (SIGSEGV) in Wazuh manager system logs
  • Review agent communication logs for messages with missing or malformed CISCAT-related JSON fields
  • Configure alerting on unexpected service interruptions of Wazuh manager components

Monitoring Recommendations

  • Enable process monitoring for the analysisd daemon with automatic restart detection
  • Configure syslog monitoring for crash-related entries from Wazuh components
  • Establish baseline metrics for agent message processing to detect anomalous traffic patterns
  • Implement health checks that validate Wazuh manager component availability

How to Mitigate CVE-2025-62791

Immediate Actions Required

  • Upgrade Wazuh to version 4.11.0 or later, which contains the fix for this vulnerability
  • Review agent integrity and ensure all connected agents are trusted and properly authenticated
  • Implement network segmentation to restrict access to Wazuh manager communication ports
  • Enable process supervision to automatically restart analysisd if crashes occur

Patch Information

This vulnerability is fixed in Wazuh version 4.11.0. Organizations should upgrade to this version or later to remediate the vulnerability. The fix implements proper NULL pointer validation after cJSON_GetObjectItem() calls in the DecodeCiscat() function. For detailed information about the security fix, refer to the GitHub Security Advisory.

Workarounds

  • If immediate patching is not possible, implement strict network access controls to limit which systems can communicate with the Wazuh manager
  • Configure firewall rules to restrict agent-to-manager communication to known, trusted agent IP addresses
  • Enable process monitoring and automatic restart for the analysisd service to minimize downtime during exploitation attempts
  • Consider temporarily disabling CISCAT processing if not critical to operations until patching can be completed
bash
# Example: Configure systemd to automatically restart analysisd on failure
# Add to /etc/systemd/system/wazuh-manager.service.d/override.conf
[Service]
Restart=always
RestartSec=5

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.07%

  • 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

  • CWE-476
  • 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