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

CVE-2026-6832: Hermes WebUI Path Traversal Vulnerability

CVE-2026-6832 is a path traversal flaw in Hermes WebUI allowing authenticated attackers to delete arbitrary files. This post covers the technical details, affected versions, security impact, and mitigation strategies.

Published: April 23, 2026

CVE-2026-6832 Overview

CVE-2026-6832 is a path traversal vulnerability in Hermes WebUI that allows authenticated attackers to delete arbitrary files on the host system. The vulnerability exists in the /api/session/delete endpoint, which fails to properly validate the session_id parameter before using it to construct file paths. Attackers can exploit this flaw by supplying an absolute path or path traversal payload (e.g., ../../../) in the session identifier to escape the intended SESSION_DIR boundary and delete writable JSON files anywhere on the system.

Critical Impact

Authenticated attackers can delete critical system or application files, leading to denial of service, data loss, or potential privilege escalation by removing security-critical configuration files.

Affected Products

  • Hermes WebUI versions prior to v0.50.32
  • Hermes WebUI versions prior to v0.50.132

Discovery Timeline

  • 2026-04-21 - CVE-2026-6832 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-6832

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as path traversal. The root issue lies in the session deletion functionality within Hermes WebUI, which accepts user-controlled input for the session_id parameter without adequate validation or sanitization.

When a user requests to delete a session via the /api/session/delete endpoint, the application constructs a file path by concatenating the SESSION_DIR base directory with the provided session_id value. Because the application does not verify that the resulting path remains within the intended session directory, an attacker can craft malicious input containing directory traversal sequences or absolute paths to target files outside the designated boundary.

The attack requires authentication, meaning an attacker must first obtain valid credentials or session tokens to exploit this vulnerability. Once authenticated, the attacker can systematically delete files that the web application process has write permissions to, potentially including application configuration files, cached data, or other JSON files critical to system operation.

Root Cause

The vulnerability stems from insufficient input validation in the /api/session/delete endpoint. The session_id parameter is directly incorporated into the file path construction without sanitizing path traversal sequences such as ../ or validating that the final resolved path remains within the SESSION_DIR boundary. This allows attackers to escape the intended directory scope and access the broader file system.

Attack Vector

The attack is network-accessible and requires low-privilege authentication. An attacker can exploit this vulnerability by sending a crafted HTTP request to the /api/session/delete endpoint with a malicious session_id value. For example, a payload like ../../../etc/app/config or an absolute path could be used to target files outside the session directory. The application processes this input and deletes the specified file if the web server process has sufficient permissions.

The attack does not require user interaction beyond the initial authentication. Successful exploitation can result in deletion of critical application files, leading to denial of service or potentially enabling further attacks by removing security controls or logging mechanisms.

Detection Methods for CVE-2026-6832

Indicators of Compromise

  • Unexpected HTTP requests to /api/session/delete containing path traversal patterns such as ../, ..%2f, or absolute paths in the session_id parameter
  • Anomalous file deletion events in application or system logs, particularly affecting files outside the expected session directory
  • Missing critical configuration files or unexplained application startup failures
  • Web server access logs showing repeated requests to the session deletion endpoint from unusual sources or with malformed parameters

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing path traversal sequences in API parameters
  • Monitor file system integrity using tools like AIDE or Tripwire to detect unauthorized deletions of critical files
  • Configure application logging to capture all requests to the /api/session/delete endpoint with full parameter details
  • Deploy endpoint detection and response (EDR) solutions to identify and alert on suspicious file deletion patterns

Monitoring Recommendations

  • Enable verbose logging for the Hermes WebUI application to capture detailed request information
  • Set up alerts for file deletion events outside the SESSION_DIR directory triggered by the web application process
  • Monitor authentication logs for anomalous access patterns that may indicate credential compromise preceding exploitation attempts

How to Mitigate CVE-2026-6832

Immediate Actions Required

  • Upgrade Hermes WebUI to version v0.50.32 or v0.50.132 or later, which contain the security fix for this vulnerability
  • Review and restrict file system permissions for the web application process to minimize potential damage from arbitrary file deletion
  • Audit authentication mechanisms and revoke any potentially compromised credentials
  • Implement input validation at the application or WAF level to reject session identifiers containing path traversal sequences

Patch Information

The vulnerability has been addressed in Hermes WebUI. The fix was implemented via GitHub Pull Request #409 and GitHub Pull Request #412, with the security patch committed in commit 3cc5839. Patched versions are available as v0.50.32 and v0.50.132. For additional details, refer to the VulnCheck Advisory.

Workarounds

  • Deploy a reverse proxy or WAF in front of Hermes WebUI to filter requests containing path traversal patterns before they reach the application
  • Restrict network access to the /api/session/delete endpoint to trusted IP addresses or internal networks only
  • Run the Hermes WebUI application with minimal file system privileges using a dedicated service account with limited write access
  • Implement file system isolation using containers or chroot environments to limit the scope of potential file deletions

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechHermes

  • SeverityHIGH

  • CVSS Score7.2

  • EPSS Probability0.09%

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

  • GitHub Pull Request #409

  • GitHub Pull Request #412

  • GitHub Release v0.50.132

  • GitHub Release v0.50.32

  • VulnCheck Advisory for Arbitrary File Deletion
  • Related CVEs
  • CVE-2026-22798: HERMES 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