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

CVE-2026-6823: HKUDS OpenHarness Auth Bypass Vulnerability

CVE-2026-6823 is an authentication bypass flaw in HKUDS OpenHarness allowing attackers to bypass access controls via insecure remote channel defaults. This article covers technical details, affected versions, and mitigation.

Published: April 23, 2026

CVE-2026-6823 Overview

HKUDS OpenHarness prior to PR #147 remediation contains an insecure default configuration vulnerability where remote channels inherit allow_from = ["*"] permitting arbitrary remote senders to pass admission checks. Attackers who can reach the configured channel can bypass access controls and reach host-backed agent runtimes, potentially leading to unauthorized file disclosure and read access through default-enabled read-only tools.

Critical Impact

Remote attackers can bypass access control mechanisms on OpenHarness remote channels, potentially gaining unauthorized read access to sensitive files through default-enabled tools without requiring authentication.

Affected Products

  • HKUDS OpenHarness versions prior to v0.1.7
  • Installations using remote channels (Telegram, etc.) with default configurations
  • Systems running OpenHarness with unpatched ohmo/cli.py and channels/impl/manager.py

Discovery Timeline

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

Technical Details for CVE-2026-6823

Vulnerability Analysis

This vulnerability stems from an insecure default configuration in OpenHarness's remote channel implementation. The core issue lies in how the allow_from parameter is initialized and handled during channel setup. When users configure remote channels such as Telegram, the system defaults to accepting messages from all senders (["*"]), effectively disabling access control entirely.

The vulnerability is classified under CWE-276 (Incorrect Default Permissions), as the software establishes overly permissive defaults that violate the principle of least privilege. In the context of OpenHarness—which provides agent runtimes with host-backed tools—this misconfiguration allows unauthorized parties to interact with agents that may have read access to local files.

Root Cause

The root cause is twofold:

  1. Default wildcard allowlist: The CLI prompts in ohmo/cli.py defaulted to ["*"] when no explicit allow_from values were provided, automatically granting access to all remote senders
  2. Error on empty list: The channel manager in manager.py raised a SystemExit error when allow_from was empty, effectively forcing users toward the permissive wildcard configuration rather than encouraging explicit allowlisting

This design choice prioritized ease of initial setup over security, creating an attack surface for any installation using remote channel functionality.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker with network access to the configured channel endpoint can:

  1. Send messages to the OpenHarness remote channel (e.g., Telegram bot)
  2. Pass admission checks due to the wildcard allow_from configuration
  3. Interact with agent runtimes that have default read-only tool access enabled
  4. Potentially read sensitive files accessible to the host-backed agent runtime
python
# Vulnerable code in ohmo/cli.py - defaulting to wildcard allowlist
         else:
             enabled.append(channel)
         allow_from_raw = _text_prompt(
-            f"{channel} allow_from (comma separated, '*' for everyone)",
-            default=",".join(prior.get("allow_from", ["*"])) or "*",
+            f"{channel} allow_from (comma separated user/chat IDs; leave blank to deny all; '*' for everyone)",
+            default=",".join(prior.get("allow_from", [])),
         )
-        allow_from = [item.strip() for item in allow_from_raw.split(",") if item.strip()] or ["*"]
+        allow_from = [item.strip() for item in allow_from_raw.split(",") if item.strip()]
         config: dict[str, object] = {"allow_from": allow_from}
         if channel == "telegram":
             config["token"] = _text_prompt(

Source: GitHub Commit Update

python
# Vulnerable code in manager.py - forcing users away from secure empty allowlist
     def _validate_allow_from(self) -> None:
         for name, ch in self.channels.items():
             if getattr(ch.config, "allow_from", None) == []:
-                raise SystemExit(
-                    f'Error: "{name}" has empty allowFrom (denies all). '
-                    f'Set ["*"] to allow everyone, or add specific user IDs.'
+                logger.warning(
+                    '%s channel has empty allow_from; remote access is denied until an operator explicitly adds allowed identities or chooses ["*"].',
+                    name,
                 )

     async def _start_channel(self, name: str, channel: BaseChannel) -> None:

Source: GitHub Commit Update

Detection Methods for CVE-2026-6823

Indicators of Compromise

  • Configuration files containing "allow_from": ["*"] for remote channel entries
  • Unexpected remote channel message activity from unrecognized user or chat IDs
  • Agent runtime logs showing file read operations initiated by unknown senders
  • Unusual outbound data from systems running OpenHarness remote channels

Detection Strategies

  • Audit OpenHarness configuration files for wildcard (*) entries in the allow_from field
  • Monitor channel message logs for requests from user IDs not on an approved allowlist
  • Implement logging at the agent runtime layer to track file access operations and their originating senders
  • Review network traffic to OpenHarness endpoints for unexpected connection patterns

Monitoring Recommendations

  • Enable verbose logging on all remote channel handlers to capture sender identification
  • Set up alerts for any agent runtime file operations triggered via remote channels
  • Establish baseline behavior for legitimate remote channel usage and alert on anomalies
  • Periodically audit allow_from configurations across all deployed OpenHarness instances

How to Mitigate CVE-2026-6823

Immediate Actions Required

  • Upgrade OpenHarness to version v0.1.7 or later which includes the security fix
  • Review and update all remote channel configurations to use explicit user/chat ID allowlists
  • Remove wildcard (*) entries from allow_from configurations immediately
  • Disable remote channels temporarily if explicit allowlists cannot be configured promptly

Patch Information

The vulnerability has been addressed in PR #147 and is included in OpenHarness v0.1.7. The fix changes the default behavior:

  1. The CLI no longer defaults to ["*"]—users must explicitly provide allowed identities
  2. An empty allow_from list now logs a warning instead of forcing an error, allowing deny-by-default configurations
  3. Prompt text has been clarified to explain the security implications of using wildcards

For detailed technical changes, see the security commit.

Workarounds

  • Manually edit configuration files to replace ["*"] with specific user/chat IDs for each remote channel
  • Implement network-level access controls to restrict which systems can reach the remote channel endpoints
  • Disable default read-only tools in agent runtimes if they are not operationally required
  • Deploy a reverse proxy with authentication in front of remote channel endpoints
bash
# Configuration example - updating allow_from in OpenHarness config
# Before (vulnerable):
# "telegram": {
#   "allow_from": ["*"],
#   "token": "your-bot-token"
# }

# After (secure - explicit allowlist):
# "telegram": {
#   "allow_from": ["123456789", "987654321"],
#   "token": "your-bot-token"
# }

# Verify current configuration
grep -r "allow_from" ~/.config/openharness/

# Check for wildcard entries
grep -r '"allow_from".*"\*"' ~/.config/openharness/

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

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.08%

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

  • GitHub Pull Request Discussion

  • GitHub Release v0.1.7

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

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

  • CVE-2026-31744: Linux Kernel NULL Pointer 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