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

CVE-2026-30846: Wekan Information Disclosure Vulnerability

CVE-2026-30846 is an information disclosure vulnerability in Wekan that exposes global webhook URLs and tokens to unauthenticated attackers. This article covers the technical details, affected versions, and mitigation strategies.

Updated: May 14, 2026

CVE-2026-30846 Overview

CVE-2026-30846 is a high severity information disclosure vulnerability in Wekan, an open source kanban tool built with Meteor. The flaw resides in the globalwebhooks publication, which exposes every global webhook integration—including url and token fields—without performing server-side authentication. Any Distributed Data Protocol (DDP) client, including unauthenticated ones, can subscribe to the publication and retrieve sensitive webhook data. Versions 8.31.0 through 8.33 are affected, and the issue is fixed in version 8.34. The vulnerability maps to [CWE-200] Exposure of Sensitive Information and [CWE-306] Missing Authentication for Critical Function.

Critical Impact

Unauthenticated remote attackers can harvest webhook URLs and authentication tokens, enabling unauthorized invocation of webhooks and access to connected external services.

Affected Products

  • Wekan 8.31.0
  • Wekan 8.32
  • Wekan 8.33

Discovery Timeline

  • 2026-03-06 - CVE-2026-30846 published to the National Vulnerability Database (NVD)
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30846

Vulnerability Analysis

Wekan uses Meteor's DDP for real-time data synchronization between client and server. Meteor publications define which collections and fields the server sends to subscribing clients. The globalwebhooks publication in server/publications/settings.js returned every integration document stored under the global webhook board identifier, including the token field used to authenticate outbound webhook requests.

The publication function lacked any server-side check on this.userId or administrative role. Although the Wekan admin settings page is the only legitimate consumer of this publication, the server enforces no access control. A DDP client can connect directly to the Wekan server and issue a sub message for globalwebhooks without ever logging in.

The response contains the full integration documents, including remote webhook URLs and bearer tokens. An attacker can then replay those tokens to invoke the connected external services—chat platforms, CI systems, or monitoring tools—on behalf of the Wekan deployment.

Root Cause

The root cause is missing authentication on a Meteor publication that returns sensitive fields. The original handler was defined as Meteor.publish('globalwebhooks', async () => { ... }) with no reference to this.userId and no field projection to strip the token value before transmission.

Attack Vector

Exploitation requires only network access to the Wekan DDP endpoint. The attacker opens a WebSocket connection, completes the DDP handshake, and subscribes to globalwebhooks. The server streams matching documents in added messages. No credentials, user interaction, or prior authorization are required.

javascript
 import { ReactiveCache } from '/imports/reactiveCache';
 
-Meteor.publish('globalwebhooks', async () => {
+Meteor.publish('globalwebhooks', async function() {
+  if (!this.userId) {
+    return this.ready();
+  }
+
+  const user = await ReactiveCache.getCurrentUser();
+  if (!user || !user.isAdmin) {
+    return this.ready();
+  }
+
   const boardId = Integrations.Const.GLOBAL_WEBHOOK_ID;
   const ret = await ReactiveCache.getIntegrations(
     {
       boardId,
     },
-    {},
+    {
+      fields: {
+        token: 0,
+      },
+    },
     true,
   );
   return ret;

Source: Wekan commit 1ee9b2e. The patch adds two guards—this.userId presence and user.isAdmin—and projects the token field out of the result set as defense in depth.

Detection Methods for CVE-2026-30846

Indicators of Compromise

  • Unauthenticated DDP sub messages targeting the globalwebhooks subscription name in Wekan WebSocket traffic.
  • Outbound webhook invocations from third-party services originating from unexpected source IP addresses using valid Wekan-issued tokens.
  • New WebSocket sessions to /websocket on the Wekan server that subscribe to publications without first issuing a login method call.

Detection Strategies

  • Inspect reverse proxy or application logs for WebSocket upgrades to the Wekan DDP endpoint followed by subscription requests that lack a preceding authenticated session.
  • Audit downstream services consumed by Wekan webhooks for token usage patterns that do not align with normal Wekan automation timing or payload shape.
  • Run an internal DDP client against the deployment and attempt an unauthenticated subscription to globalwebhooks; a non-empty response confirms exposure on versions 8.31.0 through 8.33.

Monitoring Recommendations

  • Forward Wekan application and reverse proxy logs to a centralized analytics platform and alert on anonymous DDP subscription activity.
  • Track external webhook receiver logs for invocations that do not correlate with Wekan board events.
  • Monitor the installed Wekan version across hosts and alert when a release below 8.34 is detected.

How to Mitigate CVE-2026-30846

Immediate Actions Required

  • Upgrade Wekan to version 8.34 or later, which adds the authentication and admin role checks on the globalwebhooks publication.
  • Rotate every global webhook token configured in Wekan after upgrading; assume any token present on a vulnerable version is compromised.
  • Review external services that accept Wekan webhooks and revoke or rotate any shared secrets exposed through those integrations.

Patch Information

The fix is delivered in Wekan release v8.34 and is implemented by commit 1ee9b2e. Additional context is available in the GitHub Security Lab advisory GHSL-2026-037.

Workarounds

  • Restrict network access to the Wekan DDP endpoint to trusted administrative networks until the upgrade is applied.
  • Remove global webhook integrations from the Wekan database temporarily if upgrade is not immediately feasible, eliminating the data the publication can leak.
  • Place Wekan behind an authenticating reverse proxy that blocks unauthenticated WebSocket upgrades to /websocket.
bash
# Verify installed Wekan version and upgrade via Snap (example)
snap info wekan | grep installed
sudo snap refresh wekan --channel=latest/stable

# Confirm version is >= 8.34 after upgrade
curl -s https://wekan.example.com/api/info

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWekan

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.17%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/SC:N/SI:L/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-200

  • CWE-306
  • Technical References
  • GitHub Release v8.34

  • GitHub Security Advisory GHSL-2026-037
  • Vendor Resources
  • GitHub Commit Change
  • Related CVEs
  • CVE-2026-30845: Wekan Information Disclosure Vulnerability

  • CVE-2026-30847: Wekan Information Disclosure Vulnerability

  • CVE-2026-2205: Wekan Information Disclosure Vulnerability

  • CVE-2026-2207: Wekan Information Disclosure 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