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

CVE-2025-15617: Wazuh Information Disclosure Vulnerability

CVE-2025-15617 is an information disclosure flaw in Wazuh 4.12.0 that exposes GITHUB_TOKEN through workflow artifacts, enabling unauthorized repository actions. This article covers technical details, impact, and mitigation.

Published: April 3, 2026

CVE-2025-15617 Overview

CVE-2025-15617 is an information disclosure vulnerability affecting Wazuh version 4.12.0 that involves the exposure of the GITHUB_TOKEN through GitHub Actions workflow artifacts. This vulnerability, classified under CWE-522 (Insufficiently Protected Credentials), allows attackers to extract the authentication token from uploaded workflow artifacts and potentially leverage it to perform unauthorized repository actions within a limited time window.

Critical Impact

Attackers can extract the GITHUB_TOKEN from workflow artifacts and use it to push malicious commits, alter release tags, or perform other unauthorized actions against the Wazuh repository before the token expires.

Affected Products

  • Wazuh version 4.12.0
  • Wazuh GitHub Actions workflows with artifact uploads containing tokens

Discovery Timeline

  • 2026-03-27 - CVE-2025-15617 published to NVD
  • 2026-03-31 - Last updated in NVD database

Technical Details for CVE-2025-15617

Vulnerability Analysis

This vulnerability stems from insecure handling of GitHub Actions workflow artifacts in Wazuh 4.12.0. When GitHub Actions workflows execute, they automatically receive a GITHUB_TOKEN with permissions scoped to the repository. The vulnerability occurs when workflow artifacts inadvertently include this token or files containing it, making the sensitive credential accessible to anyone who can download the artifacts.

GitHub Actions workflow artifacts are publicly accessible for public repositories, and even for private repositories, anyone with read access can download them. The GITHUB_TOKEN has a default validity period (typically until the workflow job completes), but in certain configurations, this window may be long enough for an attacker to perform malicious actions.

Root Cause

The root cause of this vulnerability is the insufficient protection of credentials within the CI/CD pipeline. Specifically, the Wazuh workflow configuration allowed sensitive token information to be captured in workflow artifacts. This represents a failure to properly sanitize or exclude sensitive environment variables and authentication tokens from artifact uploads.

Workflow configurations that use broad artifact upload patterns (such as **/* or uploading entire directories) without explicitly excluding sensitive files or environment variable dumps can inadvertently expose tokens.

Attack Vector

The attack vector for CVE-2025-15617 is network-based, requiring the attacker to:

  1. Monitor or access the target repository's GitHub Actions workflow runs
  2. Download workflow artifacts from completed or in-progress runs
  3. Extract the GITHUB_TOKEN from the artifact contents
  4. Use the token within its validity window to perform unauthorized actions

Potential malicious actions include pushing commits containing backdoors, modifying release tags to point to malicious code, creating or modifying branches, and manipulating pull requests. The attack requires high complexity as the attacker must act within the token's limited validity period.

The exploitation process involves analyzing artifact contents for token patterns, often found in environment variable dumps, log files, or cached credential files that may be inadvertently included in artifact uploads.

Detection Methods for CVE-2025-15617

Indicators of Compromise

  • Unexpected commits or tag modifications in the repository from automated workflows
  • Suspicious API activity using GITHUB_TOKEN authentication outside normal workflow execution times
  • Artifact downloads from unknown IP addresses or unusual geographic locations
  • Repository modifications that don't correspond to legitimate pull request merges

Detection Strategies

  • Monitor GitHub audit logs for API calls authenticated with workflow tokens occurring outside expected workflow execution windows
  • Implement alerts for artifact downloads from public workflows, especially from IP addresses not associated with legitimate CI/CD infrastructure
  • Review workflow configurations for patterns that may inadvertently include sensitive files in artifacts
  • Audit repository activity logs for unauthorized commits, tag changes, or branch modifications

Monitoring Recommendations

  • Enable GitHub's security logging and forward audit events to your SIEM for correlation analysis
  • Configure alerts for any repository write operations (commits, tag modifications, branch creations) that originate from automated workflows outside expected windows
  • Periodically audit all workflow artifact contents for sensitive data exposure
  • Implement repository branch protection rules requiring signed commits and pull request reviews

How to Mitigate CVE-2025-15617

Immediate Actions Required

  • Review all GitHub Actions workflows in affected Wazuh 4.12.0 deployments for artifact upload configurations
  • Audit existing workflow artifacts for token exposure and delete any artifacts containing sensitive credentials
  • Update workflow configurations to explicitly exclude sensitive files and environment variable dumps from artifact uploads
  • Implement stricter artifact upload patterns that only include necessary files

Patch Information

Refer to the Wazuh GitHub Security Advisory (GHSA-6xqr-4q5g-xc7x) for official remediation guidance and updated workflow configurations. Additional technical details are available in the VulnCheck Advisory on GitHub Token Exposure.

Workarounds

  • Configure artifact uploads to use explicit file paths rather than wildcard patterns to prevent accidental inclusion of sensitive files
  • Add .gitignore-style exclusion patterns to artifact upload steps to filter out files containing tokens or credentials
  • Reduce GITHUB_TOKEN permissions using the permissions key in workflow files to minimize potential impact if exposed
  • Consider using short-lived, scoped tokens with minimal necessary permissions for CI/CD operations
yaml
# Example workflow configuration with reduced token permissions
permissions:
  contents: read
  packages: read
  # Explicitly deny write permissions unless required
  
# Example artifact upload with explicit paths (avoid wildcards)
- uses: actions/upload-artifact@v4
  with:
    name: build-output
    path: |
      dist/
      !dist/**/*.log
      !**/.env

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWazuh

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:N/VI:H/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-522
  • Technical References
  • VulnCheck Advisory on GitHub Token Exposure
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2023-7340: Wazuh authd Buffer Overflow Vulnerability

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

  • CVE-2026-32984: Wazuh Buffer Overflow Vulnerability

  • CVE-2025-15615: 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