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

CVE-2026-6729: HKUDS OpenHarness Auth Bypass Vulnerability

CVE-2026-6729 is an authentication bypass flaw in HKUDS OpenHarness that allows attackers to hijack user sessions via shared session keys. This article covers the technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-6729 Overview

HKUDS OpenHarness prior to PR #159 remediation contains a session key derivation vulnerability that allows authenticated participants in shared chats or threads to hijack other users' sessions by exploiting a shared ohmo session key that lacks sender identity verification. Attackers can reuse another user's conversation state and replace or interrupt their active tasks by colliding into the same session boundary through the shared chat or thread scope.

Critical Impact

Authenticated users in shared chat environments can hijack sessions of other participants, potentially accessing sensitive conversation state and interrupting or replacing active tasks without authorization.

Affected Products

  • HKUDS OpenHarness (versions prior to PR #159 remediation)

Discovery Timeline

  • 2026-04-20 - CVE CVE-2026-6729 published to NVD
  • 2026-04-21 - Last updated in NVD database

Technical Details for CVE-2026-6729

Vulnerability Analysis

This vulnerability is classified under CWE-287 (Improper Authentication), specifically manifesting as a session hijacking vulnerability through insufficient sender identity verification in the session key derivation process. The flawed implementation derives session keys using only the channel, chat ID, and optionally thread ID—without incorporating the sender's identity. This architectural oversight means that multiple users participating in the same shared chat or thread context are assigned identical session keys, allowing any authenticated participant to effectively assume another user's session context.

The attack is network-accessible and requires low privileges (authentication as a participant in the shared chat). No user interaction is required for exploitation. Impact includes unauthorized access to other users' conversation states (confidentiality), the ability to modify or replace ongoing tasks (integrity), and potential disruption of active sessions (availability).

Root Cause

The root cause lies in the session_key_for_message() function within ohmo/gateway/router.py. The original implementation constructed session keys by concatenating only channel, chat_id, and optionally thread_id without including sender identity information. This design assumes that session isolation at the chat/thread level is sufficient, but fails to account for multi-user shared environments where each participant should maintain their own independent session state.

Attack Vector

An authenticated attacker participating in a shared chat or thread can exploit this vulnerability by:

  1. Joining the same chat or thread as the target victim
  2. Sending messages that will derive the same session key as the victim's active session
  3. The session key collision allows the attacker to access the victim's conversation state
  4. The attacker can then read, modify, or interrupt the victim's active tasks and session data

The following code shows the vulnerable session key derivation and the applied fix:

python
 
 
 def session_key_for_message(message: InboundMessage) -> str:
-    """Route sessions by chat and thread when available."""
+    """Route sessions by sender plus chat/thread when available."""
     if message.session_key_override:
         return message.session_key_override
+    sender_id = str(message.sender_id).strip() or "anonymous"
     thread_id = (
         message.metadata.get("thread_id")
         or message.metadata.get("thread_ts")
         or message.metadata.get("message_thread_id")
     )
     if thread_id:
-        return f"{message.channel}:{message.chat_id}:{thread_id}"
-    return f"{message.channel}:{message.chat_id}"
+        return f"{message.channel}:{message.chat_id}:{thread_id}:{sender_id}"
+    return f"{message.channel}:{message.chat_id}:{sender_id}"
 

Source: GitHub Commit Details

Detection Methods for CVE-2026-6729

Indicators of Compromise

  • Unexpected session state changes or task interruptions reported by users in shared chat environments
  • Multiple users appearing to control or access the same session simultaneously
  • Anomalous message patterns where user actions don't correlate with their expected behavior
  • Log entries showing session key collisions across different sender IDs within the same chat/thread

Detection Strategies

  • Implement logging to capture session key generation events and flag duplicate keys assigned to different user identities
  • Monitor for anomalous session activity patterns where multiple sender IDs interact with identical session states
  • Deploy application-level intrusion detection to identify session boundary violations in shared contexts

Monitoring Recommendations

  • Audit session key derivation logs for patterns indicating collision across different authenticated users
  • Enable alerting on session state modifications that don't match the expected sender identity
  • Review access patterns in shared chat environments for signs of unauthorized session reuse

How to Mitigate CVE-2026-6729

Immediate Actions Required

  • Update HKUDS OpenHarness to include the fix from PR #159
  • Review session logs for evidence of exploitation in shared chat environments
  • Notify users of shared chats or threads about the potential for session exposure prior to patching

Patch Information

The vulnerability is remediated by applying PR #159 which modifies the session_key_for_message() function in ohmo/gateway/router.py. The fix incorporates sender_id into the session key derivation, ensuring each user in a shared chat or thread receives a unique session key. The specific commit containing the fix is available at commit 3186851. Additional details are available in the VulnCheck Security Advisory.

Workarounds

  • Restrict usage of shared chat or thread features until the patch can be applied
  • Implement additional application-level session validation that verifies sender identity before granting session access
  • Consider network segmentation or access controls to limit who can participate in sensitive shared chat environments
bash
# Apply the security patch from PR #159
git fetch origin pull/159/head:fix-session-key
git checkout fix-session-key
# Or apply the specific commit
git cherry-pick 3186851c479ee714a9bb9aa6cd77017db7e589e2

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:L/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
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Commit Details

  • GitHub Pull Request

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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