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

CVE-2026-2209: Wekan Auth Bypass Vulnerability

CVE-2026-2209 is an authentication bypass vulnerability in Wekan_project Wekan affecting versions up to 8.18. Improper authorization in Custom Translation Handler allows remote attacks. Learn about technical details, impact, and patches.

Published: February 13, 2026

CVE-2026-2209 Overview

A vulnerability was detected in WeKan up to version 8.18. The affected element is the function setCreateTranslation of the file client/components/settings/translationBody.js of the component Custom Translation Handler. The manipulation results in improper authorization, allowing non-administrative users to modify custom translations. The attack can be launched remotely by authenticated users with low privileges.

Critical Impact

Non-admin users can bypass authorization controls to create, modify, or delete custom translations in WeKan, potentially enabling privilege escalation or application tampering through Insecure Direct Object Reference (IDOR).

Affected Products

  • WeKan versions up to and including 8.18
  • WeKan Custom Translation Handler component
  • WeKan installations with custom translation features enabled

Discovery Timeline

  • 2026-02-08 - CVE CVE-2026-2209 published to NVD
  • 2026-02-11 - Last updated in NVD database

Technical Details for CVE-2026-2209

Vulnerability Analysis

This vulnerability represents an Insecure Direct Object Reference (IDOR) issue combined with improper authorization in WeKan's Custom Translation Handler. The core problem stems from missing administrative privilege checks in the setCreateTranslation function, allowing any authenticated user to manipulate translation records that should be restricted to administrators only.

The vulnerability exists in the client-side event handler and the server-side method implementation. Prior to the patch, the Translation.remove() function was called directly from the client without proper server-side authorization validation. Additionally, the setCreateTranslation method lacked verification that the requesting user possessed administrative privileges before allowing translation modifications.

Root Cause

The root cause is the absence of proper authorization checks in the translation management functions. The vulnerable code allowed direct database operations from the client side without validating user roles. The Translation.remove() call was executed directly in the client-side template events, bypassing any server-side permission validation. Furthermore, server-side methods handling translation creation and modification failed to verify that the current user had administrative privileges (isAdmin flag) before processing the request.

Attack Vector

An attacker with valid low-privilege user credentials can exploit this vulnerability remotely over the network. By manipulating the translation management functionality, an authenticated non-admin user can:

  1. Create arbitrary custom translations that could inject malicious content
  2. Modify existing translations to change application behavior or display
  3. Delete legitimate translations to disrupt application functionality

The attack requires no user interaction beyond initial authentication and can be performed with low complexity against any vulnerable WeKan instance.

Vulnerable Code (Before Patch):

javascript
Template.settingsTranslationPopup.events({
  'click #deleteButton'(event) {
    event.preventDefault();
    Translation.remove(this.translationId);
    Popup.back();
  }
});

Source: Wekan Commit f244a43

Security Patch (After Fix):

javascript
Template.settingsTranslationPopup.events({
  'click #deleteButton'(event) {
    event.preventDefault();
    Meteor.call('deleteTranslation', this.translationId);
    Popup.back();
  }
});

The patch moves the delete operation to a server-side method call that includes proper authorization checks.

Server-Side Authorization Fix:

javascript
      check(text, String);
      check(translationText, String);

      if (!ReactiveCache.getCurrentUser()?.isAdmin) {
        throw new Meteor.Error('not-authorized');
      }

      const nTexts = ReactiveCache.getTranslations({ language, text }).length;
      if (nTexts > 0) {
        throw new Meteor.Error('text-already-taken');

Source: Wekan Commit f244a43

Detection Methods for CVE-2026-2209

Indicators of Compromise

  • Unexpected changes to custom translations in WeKan settings
  • Translation modifications attributed to non-admin user accounts in application logs
  • Unusual API calls to translation-related endpoints from low-privilege sessions
  • Anomalous activity patterns involving the /settings/translation routes

Detection Strategies

  • Monitor WeKan application logs for translation modification events initiated by non-administrative users
  • Implement audit logging for all administrative functions including translation management
  • Review Meteor method calls to setCreateTranslation, deleteTranslation, and related functions for unauthorized access attempts
  • Deploy application-level monitoring to detect IDOR attack patterns against object references

Monitoring Recommendations

  • Enable verbose logging for WeKan's settings and translation components
  • Configure alerts for authorization failure events (not-authorized errors) in Meteor method calls
  • Regularly audit user role assignments and verify admin privilege consistency
  • Implement network-level monitoring for unusual patterns in authenticated session activity

How to Mitigate CVE-2026-2209

Immediate Actions Required

  • Upgrade WeKan to version 8.19 or later immediately
  • Review audit logs for any unauthorized translation modifications prior to patching
  • Verify that no malicious translations were added by non-admin users
  • Confirm all administrative accounts have appropriate privilege levels

Patch Information

The vulnerability has been addressed in WeKan version 8.19. The security fix is identified by commit f244a43771f6ebf40218b83b9f46dba6b940d7de. The patch implements proper server-side authorization checks by validating the isAdmin flag on the current user before allowing translation operations. Direct client-side database operations have been replaced with secure server-side method calls that enforce proper access controls.

Upgrade resources:

  • Wekan Release v8.19
  • Security Patch Commit

Workarounds

  • Restrict access to WeKan translation settings to trusted administrative users only at the network level
  • Implement a reverse proxy with additional authorization rules for sensitive administrative endpoints
  • Temporarily disable custom translation functionality if immediate patching is not possible
  • Monitor and audit all translation-related activities until the patch can be applied
bash
# Configuration example
# If using a reverse proxy, restrict access to translation settings endpoints
# Example nginx configuration to limit access by IP or authentication
location /settings/translation {
    # Allow only trusted admin IPs
    allow 10.0.0.0/8;
    deny all;
    
    # Or require additional authentication
    auth_basic "Admin Area";
    auth_basic_user_file /etc/nginx/.htpasswd;
    
    proxy_pass http://wekan_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/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:L/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-266
  • Technical References
  • Wekan GitHub Repository

  • Wekan Release v8.19

  • VulDB Vulnerability #344923

  • VulDB #344923

  • VulDB Submission #752269
  • Vendor Resources
  • Wekan Commit f244a43
  • 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-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