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-2026-32810

CVE-2026-32810: Halloy Information Disclosure Vulnerability

CVE-2026-32810 is an information disclosure flaw in Halloy IRC application that exposes plaintext credentials to local users through insecure file permissions. This article covers technical details, affected versions, and fixes.

Published: March 27, 2026

CVE-2026-32810 Overview

CVE-2026-32810 is an Insecure Permissions vulnerability affecting Halloy, an IRC application written in Rust. On *nix and macOS systems, versions prior to commit f180e41061db393acf65bc99f5c5e7397586d9cb create configuration directories and files using default umask permissions, which typically results in 0644 on files and 0755 on directories. This misconfiguration allows any local user on the system to read plaintext credentials stored in config.toml or referenced password_file paths, leading to potential credential theft and unauthorized access to IRC servers.

Critical Impact

Local users can read plaintext IRC credentials from Halloy configuration files, potentially compromising user accounts and enabling unauthorized IRC server access.

Affected Products

  • Halloy IRC Application (versions prior to commit f180e41061db393acf65bc99f5c5e7397586d9cb)
  • *nix-based systems running Halloy
  • macOS systems running Halloy

Discovery Timeline

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

Technical Details for CVE-2026-32810

Vulnerability Analysis

The vulnerability stems from Halloy's failure to apply restrictive file permissions when creating its configuration directory and associated files. When a user runs Halloy for the first time, the application creates configuration files without explicitly setting secure permissions. Instead, it relies on the system's default umask, which on most Unix-like systems defaults to 022. This results in world-readable file permissions (0644) for configuration files and world-executable directory permissions (0755) for the configuration directory.

The config.toml file and any password_file paths referenced within it may contain sensitive IRC authentication credentials. With world-readable permissions, any local user with shell access to the system can read these files and extract plaintext passwords. This is particularly concerning in multi-user environments, shared hosting scenarios, or systems where multiple accounts have been compromised.

Root Cause

The root cause is CWE-732: Incorrect Permission Assignment for Critical Resource. Halloy did not implement proper file permission handling during configuration file creation, neglecting to explicitly set restrictive permissions (such as 0600 for files and 0700 for directories) to prevent unauthorized local access to sensitive credential data.

Attack Vector

This is a local attack vector requiring the attacker to have user-level access to the same system where Halloy is installed. The exploitation path involves:

  1. An attacker gains local access to a multi-user system running Halloy
  2. The attacker enumerates other users' home directories for Halloy configuration files
  3. Due to the permissive 0644 file permissions, the attacker reads the config.toml file
  4. Plaintext IRC credentials are extracted from the configuration
  5. The attacker uses stolen credentials to impersonate the victim on IRC servers

The vulnerability does not require special privileges beyond basic local user access, and exploitation leaves minimal forensic traces since it only involves reading files that the filesystem permissions allow.

Detection Methods for CVE-2026-32810

Indicators of Compromise

  • Unexpected access attempts to ~/.config/halloy/config.toml by non-owner users
  • File access logs showing reads of Halloy configuration files from unauthorized accounts
  • Suspicious IRC login activity from different IP addresses using compromised credentials
  • Evidence of enumeration scripts targeting user home directories for configuration files

Detection Strategies

  • Monitor file access patterns using auditd rules for Halloy configuration directories
  • Implement file integrity monitoring (FIM) on sensitive configuration paths
  • Review IRC server authentication logs for anomalous login patterns
  • Use host-based intrusion detection to identify unauthorized file access attempts
  • Regularly audit file permissions on sensitive application configuration directories

Monitoring Recommendations

  • Configure auditd to log all read attempts on ~/.config/halloy/ directories system-wide
  • Enable SentinelOne endpoint monitoring for suspicious file enumeration activities
  • Implement centralized logging for IRC authentication events to correlate with local access
  • Set up alerts for multiple failed or successful IRC logins from disparate geographic locations

How to Mitigate CVE-2026-32810

Immediate Actions Required

  • Update Halloy to a version containing commit f180e41061db393acf65bc99f5c5e7397586d9cb or later
  • Manually fix existing configuration file permissions using chmod 600 ~/.config/halloy/config.toml
  • Rotate any IRC credentials that may have been exposed in world-readable configuration files
  • Audit your system for other users who may have accessed the configuration files
  • Review IRC account activity for signs of unauthorized access

Patch Information

The vulnerability is patched in commit f180e41061db393acf65bc99f5c5e7397586d9cb. Users should update to a Halloy version that includes this commit. For detailed information about the security issue, refer to the GitHub Security Advisory GHSA-x5j2-fr4h-9p7g.

Workarounds

  • Manually set restrictive permissions on existing configuration files and directories
  • Store password files in locations with pre-existing restrictive permissions
  • Use a restrictive umask (e.g., 077) before running Halloy for initial configuration
  • Consider using encrypted credential storage mechanisms external to Halloy
  • Limit local shell access on systems where Halloy stores sensitive credentials
bash
# Fix permissions on existing Halloy configuration
chmod 700 ~/.config/halloy/
chmod 600 ~/.config/halloy/config.toml
chmod 600 ~/.config/halloy/password_file  # if applicable

# Verify permissions are correctly set
ls -la ~/.config/halloy/

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHalloy

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.01%

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

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-32733: Halloy IRC Path Traversal 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