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

CVE-2026-40196: HomeBox Auth Bypass Vulnerability

CVE-2026-40196 is an authentication bypass flaw in HomeBox that allows revoked users to access group data via API. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 23, 2026

CVE-2026-40196 Overview

CVE-2026-40196 is an authorization bypass vulnerability in HomeBox, a home inventory and organization system. The vulnerability exists in versions prior to 0.25.0 where the defaultGroup ID remains permanently assigned to a user after being invited to a group, even after their access to that group is revoked. While the web interface correctly enforces access revocation and prevents the user from viewing or modifying the group's contents, the API does not properly validate permissions, allowing continued unauthorized access.

Critical Impact

Users with revoked group access can continue to perform full CRUD (Create, Read, Update, Delete) operations on the group's collections through the API, completely bypassing intended access controls.

Affected Products

  • HomeBox versions prior to 0.25.0

Discovery Timeline

  • April 17, 2026 - CVE-2026-40196 published to NVD
  • April 20, 2026 - Last updated in NVD database

Technical Details for CVE-2026-40196

Vulnerability Analysis

This authorization bypass vulnerability (CWE-708: Incorrect Ownership Assignment) occurs due to improper validation of the defaultGroup field when processing API requests. The core issue stems from a disconnect between the web interface's access control enforcement and the API's permission validation logic.

When a user is invited to a group in HomeBox, the system assigns that group's ID as the user's defaultGroup. Under normal operation, this facilitates seamless access to the group's inventory collections. However, when an administrator revokes the user's access to the group, the system fails to clear or update this defaultGroup assignment.

The vulnerability is particularly dangerous because it creates a persistent authorization state that survives explicit access revocation. The API layer uses the X-Tenant header to determine group context, but when this header is omitted, the system falls back to using the defaultGroup value without validating whether the user still has legitimate access to that group.

Root Cause

The root cause lies in the inconsistent handling of access revocation between the web interface and API layers. When group access is revoked, the web interface correctly enforces the revocation at the presentation layer, but the underlying data model retains the defaultGroup assignment. The API's fallback mechanism that uses defaultGroup when the X-Tenant header is absent does not include a secondary authorization check to verify current access permissions.

Attack Vector

This vulnerability is exploitable over the network by any authenticated user who previously had legitimate access to a group. The attack requires low privileges (only authenticated access) and can be executed without user interaction.

An attacker who was previously granted access to a group and subsequently had that access revoked can exploit this vulnerability by:

  1. Making direct API requests without the X-Tenant header
  2. The API falls back to using the attacker's defaultGroup value
  3. Since no permission re-validation occurs, the attacker gains full CRUD access to the group's collections

The exploitation method involves crafting API requests that omit the X-Tenant header, causing the backend to default to the persisted defaultGroup value. This allows the attacker to read sensitive inventory data, modify existing items, create new entries, or delete items from groups they should no longer have access to.

Detection Methods for CVE-2026-40196

Indicators of Compromise

  • API requests to group-specific endpoints that lack the X-Tenant header from users with revoked group permissions
  • Successful API operations performed on groups by users not currently listed as group members
  • Audit log entries showing data modifications from users who were previously removed from groups
  • Unusual patterns of API access that bypass the web interface

Detection Strategies

  • Monitor API access logs for requests missing the X-Tenant header that result in successful group operations
  • Cross-reference API activity with current group membership lists to identify unauthorized access
  • Implement alerts for CRUD operations on group collections from users not in the active member list
  • Review audit trails for any data access or modifications following access revocation events

Monitoring Recommendations

  • Enable comprehensive API request logging including header analysis
  • Set up automated alerts for API requests that omit the X-Tenant header
  • Conduct periodic audits comparing defaultGroup assignments against current group membership
  • Monitor for patterns of API-only access that circumvents web interface controls

How to Mitigate CVE-2026-40196

Immediate Actions Required

  • Upgrade HomeBox to version 0.25.0 or later immediately
  • Audit all recent API access logs for potential exploitation by formerly authorized users
  • Review and verify current group memberships against recent access revocation actions
  • Consider temporarily restricting API access if immediate upgrade is not possible

Patch Information

The vulnerability has been addressed in HomeBox version 0.25.0. The fix ensures proper validation of group access permissions regardless of the defaultGroup assignment, and correctly clears or updates the defaultGroup value when access is revoked.

For detailed patch information, see the GitHub HomeBox Release v0.25.0 and the GitHub Security Advisory GHSA-6pvm-v73p-p6m9.

Workarounds

  • If upgrading is not immediately possible, manually clear the defaultGroup field for any users whose group access has been revoked
  • Implement API gateway rules to require the X-Tenant header on all group-related API endpoints
  • Restrict API access to trusted networks or implement additional authentication layers
  • Monitor and audit all API requests for suspicious activity until the patch can be applied
bash
# After upgrading to v0.25.0, verify the version
homebox --version
# Expected output: 0.25.0 or higher

# Review group memberships and defaultGroup assignments
# Consult HomeBox documentation for database inspection commands

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechHomebox

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-708
  • Technical References
  • GitHub Homebox Release v0.25.0

  • GitHub Security Advisory GHSA-6pvm-v73p-p6m9
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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