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
    • 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-2208

CVE-2026-2208: Wekan Auth Bypass Vulnerability

CVE-2026-2208 is an authentication bypass flaw in Wekan project affecting versions up to 8.20. The vulnerability allows remote attackers to bypass authorization in the Rules Handler. This article covers technical details, impact, and mitigation.

Published: February 13, 2026

CVE-2026-2208 Overview

A missing authorization vulnerability has been identified in WeKan, the open-source kanban board application. The vulnerability exists in the server/publications/rules.js file within the Rules Handler component. Due to improper access control checks, authenticated users can potentially access rule data from boards they do not have permission to view, leading to unauthorized information disclosure.

Critical Impact

Authenticated attackers can remotely exploit this vulnerability to access sensitive rule configurations from unauthorized boards, potentially exposing workflow automation details and business logic.

Affected Products

  • WeKan versions up to and including 8.20
  • wekan_project wekan (all installations prior to v8.21)

Discovery Timeline

  • February 8, 2026 - CVE-2026-2208 published to NVD
  • February 11, 2026 - Last updated in NVD database

Technical Details for CVE-2026-2208

Vulnerability Analysis

This vulnerability falls under CWE-862 (Missing Authorization), which occurs when the software does not perform an authorization check when an actor attempts to access a resource or perform an action. In the case of WeKan, the rules Meteor publication endpoint in server/publications/rules.js failed to verify whether the requesting user had legitimate access to the board associated with the requested rule.

The vulnerable code path allowed any authenticated user to request rule data by providing a valid ruleId parameter, regardless of whether they had permission to view the associated board. This design flaw enables horizontal privilege escalation where users can access data belonging to other boards or organizations.

Root Cause

The root cause stems from insufficient authorization checks in the Meteor publication function for rules. The original implementation accepted a ruleId parameter and returned the corresponding rule data without validating:

  1. Whether the user was authenticated (this.userId check was missing)
  2. Whether the rule actually existed in the database
  3. Whether the user had permission to view the board associated with the rule

This oversight allowed authenticated users to enumerate and retrieve rule configurations from any board in the WeKan instance.

Attack Vector

The attack can be initiated remotely by any authenticated user with access to the WeKan instance. An attacker would need to:

  1. Authenticate to the WeKan application with valid credentials
  2. Identify or enumerate valid rule IDs (potentially through other information disclosure vectors)
  3. Subscribe to the rules publication with a target ruleId
  4. Receive rule data from boards they should not have access to

The vulnerability requires network access and low-privilege authentication, but no user interaction is needed for exploitation.

javascript
// Security patch in server/publications/rules.js - Security Fix 14: RulesBleed
// Source: https://github.com/wekan/wekan/commit/a787bcddf33ca28afb13ff5ea9a4cb92dceac005

 import Actions from '/models/actions';
 import Triggers from '/models/triggers';
 import Rules from '/models/rules';
+import ReactiveCache from '/imports/reactiveCache';
 
-Meteor.publish('rules', ruleId => {
+Meteor.publish('rules', function(ruleId) {
   check(ruleId, String);
+
+  if (!this.userId) {
+    return this.ready();
+  }
+
+  const rule = ReactiveCache.getRule(ruleId);
+  if (!rule) {
+    return this.ready();
+  }
+
+  const board = ReactiveCache.getBoard(rule.boardId);
+  if (!board || !board.isVisibleBy(this.userId)) {
+    return this.ready();
+  }
+
   const ret = ReactiveCache.getRules(
     {
       _id: ruleId,

Source: GitHub Commit a787bcdd

Detection Methods for CVE-2026-2208

Indicators of Compromise

  • Unusual subscription patterns to the rules publication endpoint from individual users
  • Access logs showing repeated requests for rule IDs across multiple boards by the same user
  • Anomalous Meteor DDP (Distributed Data Protocol) subscription activity targeting rules

Detection Strategies

  • Monitor Meteor publication subscriptions for abnormal rules endpoint access patterns
  • Implement logging on rule access to track which users are querying which rule IDs
  • Review access logs for users accessing rules associated with boards they are not members of
  • Deploy application-level monitoring to detect enumeration attempts against rule IDs

Monitoring Recommendations

  • Enable verbose logging for Meteor publication endpoints in WeKan
  • Set up alerts for high-frequency rule subscription requests from single users
  • Implement audit trails for all rule data access within the application
  • Monitor for unauthorized cross-board data access patterns

How to Mitigate CVE-2026-2208

Immediate Actions Required

  • Upgrade WeKan to version 8.21 or later immediately
  • Review access logs for any suspicious rule access patterns prior to patching
  • Audit rule configurations for any sensitive data that may have been exposed
  • Consider resetting or reviewing automation rules if unauthorized access is suspected

Patch Information

The vulnerability has been addressed in WeKan version 8.21. The fix implements proper authorization checks including:

  • User authentication verification (this.userId check)
  • Rule existence validation before processing
  • Board visibility verification using board.isVisibleBy(this.userId)

The security patch is identified by commit hash a787bcddf33ca28afb13ff5ea9a4cb92dceac005. Organizations should upgrade to WeKan v8.21 to remediate this vulnerability.

Workarounds

  • Restrict network access to the WeKan instance to trusted networks only until patching is complete
  • Implement additional authentication layers (reverse proxy authentication) to limit access
  • Review and audit user accounts to ensure only authorized personnel have access
  • Consider temporarily disabling the rules feature if not critical to operations
bash
# Configuration example - Upgrade WeKan to patched version
# Pull the latest WeKan Docker image with the fix
docker pull wekanteam/wekan:v8.21

# Or if using snap installation
sudo snap refresh wekan --channel=latest/stable

# Verify the installation version
wekan --version

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWekan

  • 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:N/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-862
  • Technical References
  • GitHub Wekan Repository

  • GitHub Wekan Release v8.21

  • VulDB #344922 - CVE Info

  • VulDB #344922

  • VulDB Submission #752164
  • Vendor Resources
  • GitHub Commit a787bcdd
  • Related CVEs
  • CVE-2026-30843: Wekan Auth Bypass Vulnerability

  • CVE-2026-2206: Wekan Authentication Bypass Vulnerability

  • CVE-2026-2209: Wekan Auth Bypass Vulnerability

  • CVE-2026-25560: Wekan LDAP Auth Bypass Vulnerability
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