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

CVE-2026-25560: Wekan LDAP Auth Bypass Vulnerability

CVE-2026-25560 is an LDAP filter injection flaw in Wekan that enables authentication bypass through manipulated LDAP queries. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 13, 2026

CVE-2026-25560 Overview

CVE-2026-25560 is an LDAP filter injection vulnerability affecting WeKan versions prior to 8.19. The vulnerability exists in the LDAP authentication mechanism where user-supplied username input is incorporated into LDAP search filters and DN-related values without adequate escaping. This allows an attacker to manipulate LDAP queries during authentication, potentially bypassing authentication controls or extracting sensitive directory information.

Critical Impact

Unauthenticated attackers can manipulate LDAP queries to bypass authentication or extract sensitive directory information from the LDAP server.

Affected Products

  • WeKan versions prior to 8.19
  • WeKan installations using LDAP authentication
  • Self-hosted WeKan deployments with LDAP directory integration

Discovery Timeline

  • 2026-02-07 - CVE-2026-25560 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-25560

Vulnerability Analysis

This LDAP injection vulnerability (CWE-90) stems from improper neutralization of special characters used in LDAP queries. When a user attempts to authenticate via LDAP, the WeKan application constructs an LDAP search filter using the user-supplied username. The application fails to properly sanitize or escape special LDAP metacharacters before incorporating the username into the filter, allowing attackers to inject malicious LDAP filter syntax.

The vulnerability is remotely exploitable without authentication, meaning an attacker only needs network access to the WeKan login page. Successful exploitation could allow authentication bypass, unauthorized data access, or enumeration of LDAP directory contents depending on the LDAP server configuration and the attacker's crafted payload.

Root Cause

The root cause lies in the packages/wekan-ldap/server/ldap.js file where user-supplied usernames are directly concatenated into LDAP filter expressions without proper escaping. The LDAP search field configuration allows multiple fields to be searched, and for each field, the username is inserted directly into the filter string (${item}=${username}). Without escaping LDAP special characters like *, (, ), \, and null bytes, an attacker can break out of the intended filter context and inject arbitrary LDAP filter logic.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can submit a specially crafted username through the WeKan login form that contains LDAP metacharacters. These characters modify the structure of the resulting LDAP query, potentially allowing the attacker to:

  • Bypass authentication by constructing always-true filter conditions
  • Enumerate valid usernames or other LDAP attributes
  • Extract sensitive information from the LDAP directory through blind injection techniques
javascript
       }
     }
 
-    const usernameFilter = this.options.User_Search_Field.split(',').map((item) => `(${item}=${username})`);
+    // Escape the username to prevent LDAP injection
+    const escapedUsername = escapedToHex(username);
+    const usernameFilter = this.options.User_Search_Field.split(',').map((item) => `(${item}=${escapedUsername})`);
 
     if (usernameFilter.length === 0) {
       Log.error('LDAP_LDAP_User_Search_Field not defined');

Source: GitHub Commit Details

Detection Methods for CVE-2026-25560

Indicators of Compromise

  • Unusual login attempts with usernames containing LDAP metacharacters such as *, (, ), \, or null bytes
  • Authentication logs showing malformed usernames or unexpected LDAP query patterns
  • Failed or anomalous LDAP bind operations in directory server logs
  • Multiple authentication attempts from the same source with varying username payloads indicative of probing

Detection Strategies

  • Implement input validation logging to capture login attempts with suspicious characters in username fields
  • Monitor LDAP server logs for malformed queries, unusual search patterns, or unexpected filter structures
  • Deploy web application firewall (WAF) rules to detect and block LDAP injection patterns in authentication parameters
  • Configure SIEM alerts for authentication anomalies associated with LDAP-integrated applications

Monitoring Recommendations

  • Enable detailed logging for WeKan authentication events and correlate with LDAP server logs
  • Monitor for high volumes of failed authentication attempts that may indicate injection probing
  • Track LDAP query response times as injection attacks may cause unusual query patterns
  • Review network traffic to LDAP servers for anomalous query sizes or frequencies

How to Mitigate CVE-2026-25560

Immediate Actions Required

  • Upgrade WeKan to version 8.19 or later immediately
  • Review authentication logs for evidence of exploitation attempts
  • Implement network segmentation to limit access to the WeKan application and LDAP servers
  • Consider temporarily disabling LDAP authentication until the patch is applied if immediate upgrade is not possible

Patch Information

The vulnerability has been addressed in WeKan version 8.19. The fix implements proper escaping of user-supplied input using the escapedToHex() function before incorporating usernames into LDAP filter expressions. Organizations should apply the update by following their standard software update procedures for WeKan deployments.

For detailed patch information, refer to the GitHub Commit Details.

Workarounds

  • Deploy a web application firewall (WAF) with LDAP injection detection rules in front of WeKan
  • Implement additional input validation at the network perimeter to filter LDAP metacharacters from authentication requests
  • Restrict network access to the WeKan login endpoint to trusted networks or VPN users only
  • Consider using alternative authentication methods (local accounts, OAuth) until the patch can be applied
bash
# Example: Restrict WeKan access to internal network via iptables
iptables -A INPUT -p tcp --dport 80 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP

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 Score8.7

  • EPSS Probability0.08%

  • 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: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-90
  • Technical References
  • Wekan Official Site

  • VulnCheck Advisory on Wekan
  • Vendor Resources
  • GitHub Commit Details
  • 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
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