A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-44847

CVE-2026-44847: MaxKB Authentication Bypass Vulnerability

CVE-2026-44847 is an authentication bypass flaw in MaxKB that allows unauthenticated attackers to invoke webhook triggers without proper authentication. This post covers technical details, affected versions, and mitigation.

Published: May 28, 2026

CVE-2026-44847 Overview

CVE-2026-44847 is an authentication bypass vulnerability [CWE-287] in MaxKB, an open-source AI assistant platform for enterprise. Versions prior to 2.9.0 expose the webhook trigger endpoint /api/trigger/v1/webhook/{trigger_id} without authentication enforcement. The WebhookAuth class unconditionally returns (None, {}), which Django REST Framework interprets as successful authentication. Combined with optional per-trigger token verification and no backend enforcement of token requirements, any unauthenticated attacker who knows a valid trigger ID can invoke webhook triggers. The vulnerability is fixed in MaxKB version 2.9.0.

Critical Impact

Unauthenticated remote attackers can invoke arbitrary webhook triggers and execute their bound tasks, compromising the integrity of MaxKB workflows.

Affected Products

  • MaxKB versions prior to 2.9.0
  • 1Panel-dev MaxKB open-source AI assistant
  • Deployments exposing the /api/trigger/v1/webhook/ endpoint

Discovery Timeline

  • 2026-05-26 - CVE-2026-44847 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-44847

Vulnerability Analysis

The vulnerability resides in MaxKB's webhook authentication layer. The application defines a WebhookAuth class intended to authenticate requests to the webhook trigger endpoint. Instead of validating credentials, the class unconditionally returns the tuple (None, {}). Django REST Framework treats this return value as a valid authenticated context, meaning every request passes authentication regardless of headers or tokens supplied.

The webhook endpoint accepts a trigger_id path parameter that maps to a configured trigger task. Each trigger optionally supports a verification token, but the backend never enforces that a token is required. Triggers configured without a token expose their bound actions to any caller. Triggers configured with a token still rely on a flawed authentication path that does not block missing or invalid tokens consistently.

An attacker who learns or guesses a valid trigger_id can invoke the endpoint to execute the trigger's bound task. The impact depends on the task definition but can include knowledge base mutations, automated workflow execution, and downstream integrations.

Root Cause

The root cause is improper authentication [CWE-287]. The WebhookAuth.authenticate method returns a success tuple without performing any credential check. The application also lacks a server-side policy that requires every trigger to have a token. This combination removes both the global authentication boundary and the per-resource access control.

Attack Vector

An attacker sends an HTTP request to /api/trigger/v1/webhook/{trigger_id} over the network. No authentication header, session, or API key is required. If the trigger_id corresponds to a configured trigger without a strictly verified token, the server executes the bound task and returns the result. Attackers can enumerate trigger IDs or harvest them from logs, browser history, or integration configurations.

No verified exploit code is publicly available. Refer to the GitHub Security Advisory and the GitHub Issue Document for technical details.

Detection Methods for CVE-2026-44847

Indicators of Compromise

  • HTTP requests to /api/trigger/v1/webhook/{trigger_id} from unexpected source IP addresses or user agents.
  • Webhook trigger executions without a corresponding authenticated user session or API client identifier.
  • Bursts of requests enumerating different trigger_id values, indicating ID brute forcing.
  • Trigger task executions occurring outside of expected business hours or scheduled windows.

Detection Strategies

  • Inspect MaxKB application logs for requests to the webhook trigger path and correlate with authenticated session data.
  • Deploy WAF or reverse proxy rules that log all requests to /api/trigger/v1/webhook/ and flag anonymous calls.
  • Hunt for repeated 200 responses against varied trigger_id values from a single source.

Monitoring Recommendations

  • Forward MaxKB access logs to a centralized logging or SIEM platform for retention and correlation.
  • Alert on any successful webhook trigger invocation that lacks a valid token header.
  • Track baseline trigger execution counts and alert on statistical anomalies.

How to Mitigate CVE-2026-44847

Immediate Actions Required

  • Upgrade MaxKB to version 2.9.0 or later, which contains the official fix.
  • Restrict network access to the /api/trigger/v1/webhook/ endpoint using firewall or reverse proxy rules until the upgrade is complete.
  • Audit all existing trigger configurations and rotate any trigger IDs that may have been exposed.
  • Review historical access logs for unauthorized invocations and identify any tasks that executed without authorization.

Patch Information

The maintainers fixed CVE-2026-44847 in MaxKB version 2.9.0. The fix enforces authentication on the webhook trigger endpoint and validates trigger tokens on the backend. See the GitHub Security Advisory GHSA-r3j3-j58q-rjpp for full remediation details.

Workarounds

  • Block external access to the /api/trigger/v1/webhook/ path at the reverse proxy or load balancer until the patch is applied.
  • Require an authenticated proxy or VPN for any client invoking webhook triggers.
  • Disable or delete unused triggers to reduce the attack surface.
  • Rotate trigger IDs and assign strong, randomly generated tokens to every active trigger.
bash
# Example nginx configuration to restrict webhook trigger endpoint to trusted IPs
location /api/trigger/v1/webhook/ {
    allow 10.0.0.0/8;
    allow 192.168.0.0/16;
    deny all;
    proxy_pass http://maxkb_backend;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMaxkb

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287
  • Technical References
  • GitHub Issue Document

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42337: MaxKB Auth Bypass Vulnerability

  • CVE-2026-39419: MaxKB Auth Bypass Vulnerability

  • CVE-2026-39418: MaxKB Authentication Bypass Vulnerability

  • CVE-2026-45412: MaxKB AI Assistant SSRF 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