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

CVE-2026-25598: Harden-Runner Audit Bypass Vulnerability

CVE-2026-25598 is an information disclosure flaw in Harden-Runner GitHub Action that allows outbound network traffic to bypass audit logging. This article covers the technical details, affected versions, and mitigation steps.

Published: February 13, 2026

CVE-2026-25598 Overview

CVE-2026-25598 is a security vulnerability identified in the Harden-Runner GitHub Action (Community Tier), a CI/CD security agent that functions as an endpoint detection and response (EDR) solution for GitHub Actions runners. The vulnerability allows outbound network connections to evade audit logging, undermining the security monitoring capabilities of the action.

Specifically, outbound traffic using the sendto, sendmsg, and sendmmsg socket system calls can bypass detection and logging when the action is configured with egress-policy: audit. This means malicious processes or compromised dependencies within a GitHub Actions workflow could exfiltrate data or communicate with external command-and-control servers without being recorded in the audit logs.

Critical Impact

Attackers can establish covert outbound network connections from GitHub Actions runners that completely evade security audit logging, potentially enabling undetected data exfiltration or supply chain attacks.

Affected Products

  • Harden-Runner GitHub Action (Community Tier) versions prior to 2.14.2

Discovery Timeline

  • February 9, 2026 - CVE-2026-25598 published to NVD
  • February 9, 2026 - Last updated in NVD database

Technical Details for CVE-2026-25598

Vulnerability Analysis

This vulnerability stems from insufficient logging coverage (CWE-778) within the Harden-Runner GitHub Action's network monitoring subsystem. The action is designed to monitor and audit egress network traffic from GitHub Actions runners to detect potentially malicious outbound connections during CI/CD pipeline execution.

The core issue is that the monitoring mechanism fails to intercept outbound network traffic initiated through specific socket system calls. While the action successfully monitors standard send() operations, it does not properly hook or log traffic sent via the sendto(), sendmsg(), and sendmmsg() system calls. These are alternative methods for transmitting data over network sockets that provide additional functionality like specifying destination addresses at send time.

Root Cause

The root cause is an incomplete implementation of network syscall monitoring in the Harden-Runner agent. When implementing egress traffic auditing, the developers hooked the standard socket send operations but overlooked the alternative datagram-oriented send functions. The sendto(), sendmsg(), and sendmmsg() syscalls are commonly used for UDP communications and can also be used with TCP sockets, providing attackers with a reliable bypass technique.

This represents a classic case of insufficient logging where security-critical events (network egress) are not being captured comprehensively, allowing attackers to operate below the visibility threshold of the security tooling.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker who has compromised a dependency or injected malicious code into a GitHub Actions workflow can exploit this vulnerability to:

  1. Establish outbound connections to attacker-controlled infrastructure without triggering audit alerts
  2. Exfiltrate sensitive data such as secrets, tokens, or source code from the CI/CD environment
  3. Download additional malicious payloads or receive command-and-control instructions
  4. Conduct supply chain attacks while evading the security monitoring that organizations rely on

A malicious actor would simply need to use the sendto(), sendmsg(), or sendmmsg() system calls instead of standard socket send operations to communicate with external servers. These syscalls are readily available in most programming languages and system libraries.

The vulnerability does not require special privileges and can be exploited by any code running within the GitHub Actions runner environment. For detailed technical information, refer to the GitHub Security Advisory GHSA-cpmj-h4f6-r6pq.

Detection Methods for CVE-2026-25598

Indicators of Compromise

  • Unexpected outbound network connections from GitHub Actions runners that do not appear in Harden-Runner audit logs
  • Discrepancies between network flow data and Harden-Runner logged egress events
  • Processes using UDP sockets or raw socket operations during workflow execution
  • Evidence of data exfiltration or command-and-control communication in network monitoring systems outside of Harden-Runner

Detection Strategies

  • Compare Harden-Runner audit logs against independent network monitoring to identify gaps in logging coverage
  • Monitor for use of sendto(), sendmsg(), and sendmmsg() syscalls in workflow processes using external eBPF-based monitoring tools
  • Review GitHub Actions workflow logs for suspicious dependencies or unexpected script execution
  • Implement network-level egress controls and logging independent of Harden-Runner to establish a secondary detection layer

Monitoring Recommendations

  • Deploy network-level firewall rules and logging for GitHub Actions runner infrastructure to capture traffic that may bypass application-level auditing
  • Enable comprehensive audit logging at the infrastructure level for all outbound connections from CI/CD environments
  • Establish baselines for expected egress traffic patterns and alert on anomalies
  • Regularly verify that security tooling is capturing all expected network events through periodic testing

How to Mitigate CVE-2026-25598

Immediate Actions Required

  • Upgrade Harden-Runner GitHub Action to version 2.14.2 or later immediately
  • Audit existing workflow runs for any suspicious unlogged network activity that may have occurred before patching
  • Review and validate that egress monitoring is functioning correctly after the upgrade
  • Consider implementing network-level egress controls as an additional defense layer while validating the fix

Patch Information

The vulnerability has been fixed in Harden-Runner version 2.14.2. Organizations should update their GitHub Actions workflows to reference the patched version. The fix ensures that outbound traffic using sendto(), sendmsg(), and sendmmsg() socket system calls is properly detected and logged when using egress-policy: audit.

For patch details, see the GitHub Release v2.14.2.

Workarounds

  • Implement network-level egress filtering using firewall rules to restrict outbound connections from GitHub Actions runners to known-good destinations
  • Deploy additional network monitoring solutions that operate independently of Harden-Runner to ensure comprehensive visibility
  • Consider using egress-policy: block instead of egress-policy: audit to prevent unauthorized outbound connections entirely, though this may require additional configuration for legitimate traffic
  • Isolate CI/CD runner environments in network segments with strict egress controls
bash
# Update Harden-Runner in your GitHub Actions workflow
# Replace the uses directive in your workflow YAML:
# Before: uses: step-security/harden-runner@v2.14.1
# After:
uses: step-security/harden-runner@v2.14.2

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHarden Runner

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-778
  • Technical References
  • GitHub Release v2.14.2

  • GitHub Security Advisory GHSA-cpmj-h4f6-r6pq
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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