Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2026-32733

CVE-2026-32733: Halloy IRC Path Traversal Vulnerability

CVE-2026-32733 is a path traversal vulnerability in Halloy IRC application that allows remote attackers to write files outside the configured directory. This post covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-32733 Overview

CVE-2026-32733 is a path traversal vulnerability affecting Halloy, an IRC application written in Rust. The vulnerability exists in the DCC (Direct Client-to-Client) receive flow, which failed to properly sanitize filenames from incoming DCC SEND requests. This allows a remote attacker to write files outside the user's configured save_directory by sending malicious filenames containing path traversal sequences.

Critical Impact

Remote attackers can write arbitrary files to sensitive locations on the victim's system, potentially enabling SSH key injection, credential theft, or remote code execution with zero user interaction when auto-accept is enabled.

Affected Products

  • Halloy IRC Application (versions prior to commit 0f77b2cfc5f822517a256ea5a4b94bad8bfe38b6)

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-32733 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-32733

Vulnerability Analysis

The vulnerability stems from improper input validation in Halloy's DCC file transfer implementation. When processing incoming DCC SEND requests from remote IRC users, the application accepted filenames directly without sanitization. This oversight allowed attackers to craft filenames containing directory traversal sequences (such as ../) that would escape the intended download directory.

The attack is particularly severe when Halloy's auto-accept feature is enabled, as the malicious file transfer completes without requiring any user interaction. An attacker could leverage this to overwrite critical system files or inject malicious content into sensitive directories like ~/.ssh/authorized_keys, effectively gaining persistent remote access to the victim's system.

Root Cause

The root cause is improper input validation (CWE-22: Path Traversal) in the DCC receive functionality. The application failed to strip or reject path traversal characters (../, ..\\) from incoming filenames before concatenating them with the user-configured save_directory path. This allowed attackers to navigate out of the intended directory structure and write files to arbitrary locations accessible by the user running Halloy.

Attack Vector

The attack can be executed remotely over the network by any IRC user who can send a DCC request to the victim. The attacker crafts a malicious DCC SEND request with a filename containing path traversal sequences. For example, sending a filename like ../../.ssh/authorized_keys would cause the file to be written two directories above the configured save directory and into the victim's SSH configuration folder.

The attack flow involves sending a crafted filename such as ../../.ssh/authorized_keys via DCC SEND protocol. With auto-accept enabled, the file is received and written to the traversed path without user confirmation, potentially enabling unauthorized SSH access or other system compromise.

Detection Methods for CVE-2026-32733

Indicators of Compromise

  • Unexpected files appearing in sensitive directories such as ~/.ssh/, ~/.bashrc, or ~/.config/
  • IRC logs showing DCC SEND requests with filenames containing ../ sequences
  • New or modified authorized_keys files with unrecognized SSH public keys
  • Unusual file write operations originating from the Halloy process outside the configured save directory

Detection Strategies

  • Monitor file system activity for the Halloy process, alerting on any writes outside the configured save_directory
  • Implement network-level detection rules for IRC traffic containing DCC SEND commands with path traversal patterns
  • Deploy endpoint detection rules to identify processes writing to sensitive directories like .ssh/ or startup scripts
  • Review Halloy logs for DCC file transfer requests with suspicious filename patterns

Monitoring Recommendations

  • Enable file integrity monitoring on critical user directories including .ssh/, .config/, and home directory dotfiles
  • Configure audit logging for file creation events in sensitive system locations
  • Implement real-time alerting for new entries in authorized_keys files across managed systems
  • Monitor for unusual network connections following DCC file transfers

How to Mitigate CVE-2026-32733

Immediate Actions Required

  • Update Halloy to a version containing commit 0f77b2cfc5f822517a256ea5a4b94bad8bfe38b6 or later
  • Disable auto-accept for DCC file transfers until the application is updated
  • Review recently received files and check for unauthorized modifications to sensitive system files
  • Audit ~/.ssh/authorized_keys for any unauthorized public keys

Patch Information

The Halloy development team addressed this vulnerability in commit 0f77b2cfc5f822517a256ea5a4b94bad8bfe38b6. The fix introduces a shared sanitize_filename function that strips path traversal sequences from all incoming filenames across identified code paths. Users should update to a version containing this commit to ensure protection against this vulnerability.

For detailed patch information, refer to the GitHub Commit Update and the GitHub Security Advisory GHSA-fqrv-rfg4-rv89.

Workarounds

  • Disable DCC auto-accept functionality in Halloy configuration until updating is possible
  • Manually inspect all incoming DCC file transfer requests for suspicious filename patterns before accepting
  • Run Halloy in a sandboxed environment or container with restricted write access to the file system
  • Configure firewall rules to block direct DCC connections if DCC functionality is not required
bash
# Configuration example
# Disable DCC auto-accept in Halloy configuration
# Edit your Halloy config.toml and ensure auto-accept is disabled:
# [dcc]
# auto_accept = false

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechHalloy

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/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-22
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-fqrv-rfg4-rv89
  • Related CVEs
  • CVE-2026-32810: Halloy Information Disclosure 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