Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25566

CVE-2026-25566: WeKan Authorization Bypass Vulnerability

CVE-2026-25566 is an authorization bypass flaw in WeKan versions prior to 8.19 affecting card move operations. Attackers can move cards across boards without proper authorization. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 13, 2026

CVE-2026-25566 Overview

CVE-2026-25566 is an authorization bypass vulnerability affecting WeKan versions prior to 8.19. The vulnerability exists in the card move logic, where users can specify a destination board, list, or swimlane without adequate authorization checks. Additionally, the application fails to validate that destination objects actually belong to the specified destination board, potentially enabling unauthorized cross-board card moves that could expose sensitive project data.

Critical Impact

Authenticated users can move cards to boards they don't have access to, potentially exposing confidential project information or disrupting workflows across organizational boundaries.

Affected Products

  • WeKan versions prior to 8.19
  • WeKan Open Source Kanban Board installations with card move functionality enabled
  • Self-hosted WeKan deployments without updated authorization controls

Discovery Timeline

  • 2026-02-07 - CVE-2026-25566 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-25566

Vulnerability Analysis

This vulnerability is classified under CWE-863 (Incorrect Authorization). The flaw resides in the card move API endpoint within WeKan's models/cards.js file. When a user initiates a card move operation specifying a new board ID, swimlane ID, and list ID, the application processes the request without verifying whether the authenticated user has appropriate access rights to the destination board.

Furthermore, the vulnerable code path lacks validation to confirm that the specified destination list and swimlane actually belong to the target board. This creates a scenario where an attacker could craft API requests that reference arbitrary board IDs combined with mismatched list or swimlane identifiers, bypassing the intended access control model.

Root Cause

The root cause is the absence of authorization checks before processing cross-board card move operations. The original implementation trusted user-supplied destination parameters without verifying:

  1. Whether the requesting user has board-level access to the destination board
  2. Whether the specified destination list exists within and belongs to the destination board
  3. Whether the specified destination swimlane exists within and belongs to the destination board

Attack Vector

An authenticated attacker with access to at least one board can exploit this vulnerability via network-based API requests. The attack requires low privileges (valid user account) and no user interaction. By manipulating the newBoardId, newListId, and newSwimlaneId parameters in card move API calls, an attacker can move cards containing potentially sensitive information to boards outside their authorized scope, or conversely, inject unauthorized cards into restricted boards.

javascript
// Security patch from models/cards.js showing added authorization checks
// Source: https://github.com/wekan/wekan/commit/198509e7600981400353aec6259247b3c04e043e

       );\n       }\n       if (newBoardId && newSwimlaneId && newListId) {
        // Validate destination board access
        Authentication.checkBoardAccess(req.userId, newBoardId);

        // Validate that the destination list exists and belongs to the destination board
        const destList = ReactiveCache.getList({
          _id: newListId,
          boardId: newBoardId,
          archived: false,
        });
        if (!destList) {
          JsonRoutes.sendResult(res, {
            code: 404,
            data: { error: 'Destination list not found or does not belong to destination board' },
          });
          return;
        }

        // Validate that the destination swimlane exists and belongs to the destination board
        const destSwimlane = ReactiveCache.getSwimlane({
          _id: newSwimlaneId,
          boardId: newBoardId,
          archived: false,
        });
        if (!destSwimlane) {
          JsonRoutes.sendResult(res, {
            code: 404,
            data: { error: 'Destination swimlane not found or does not belong to destination board' },

Source: GitHub Wekan Commit Update

Detection Methods for CVE-2026-25566

Indicators of Compromise

  • Unusual card move activity patterns showing cards being transferred to boards where the user lacks explicit membership
  • API request logs containing card move operations with destination board IDs that differ from the source board
  • Audit trail entries showing cards appearing in boards without corresponding user access grants

Detection Strategies

  • Monitor WeKan API logs for card move operations (PUT or POST requests to card endpoints) with cross-board destination parameters
  • Implement alerting for card move operations where the requesting user's board membership doesn't include the destination board
  • Review application logs for 404 errors related to destination list or swimlane validation failures, which may indicate exploitation attempts against patched systems

Monitoring Recommendations

  • Enable detailed API request logging for all card manipulation endpoints in WeKan
  • Configure SIEM rules to correlate card move events with user board membership records
  • Establish baseline metrics for cross-board card movements to detect anomalous spikes in activity

How to Mitigate CVE-2026-25566

Immediate Actions Required

  • Upgrade WeKan installations to version 8.19 or later immediately
  • Audit recent card move activity logs to identify any potentially unauthorized cross-board transfers
  • Review board membership and access control configurations to ensure principle of least privilege
  • Consider temporarily restricting card move functionality to administrators while patching is in progress

Patch Information

The vulnerability has been addressed in WeKan version 8.19. The patch introduces proper authorization checks via Authentication.checkBoardAccess() and validates that destination lists and swimlanes belong to the specified destination board before allowing card moves. The fix is available in commit 198509e7.

For detailed patch information, see the VulnCheck Advisory on Wekan and the official Wekan website.

Workarounds

  • Implement network-level access controls to restrict WeKan API access to trusted internal networks only
  • Use a reverse proxy or web application firewall to filter and log card move API requests containing cross-board parameters
  • Temporarily disable cross-board card move functionality at the application level if the feature is not business-critical
bash
# Example: Update WeKan using Docker
docker pull wekanteam/wekan:v8.19
docker stop wekan-app
docker rm wekan-app
docker run -d --name wekan-app --restart=always \
  -e MONGO_URL=mongodb://wekandb:27017/wekan \
  -e ROOT_URL=https://your-wekan-domain.com \
  wekanteam/wekan:v8.19

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

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.04%

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

  • Wekan Official Website

  • VulnCheck Advisory on Wekan
  • Related CVEs
  • CVE-2026-30843: Wekan Auth Bypass Vulnerability

  • CVE-2026-2206: Wekan Authentication Bypass Vulnerability

  • CVE-2026-2208: Wekan Auth Bypass Vulnerability

  • CVE-2026-2209: Wekan Auth Bypass 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