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

CVE-2026-26964: Windmill Information Disclosure Flaw

CVE-2026-26964 is an information disclosure vulnerability in Windmill that exposes Slack OAuth client secrets to non-admin users. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 27, 2026

CVE-2026-26964 Overview

CVE-2026-26964 is an Information Disclosure vulnerability affecting Windmill, an open-source developer platform for internal code including APIs, background jobs, workflows, and UIs. The vulnerability allows non-admin users to obtain Slack OAuth client secrets through the workspace settings API endpoint, which should only be accessible to workspace administrators.

Critical Impact

Authenticated non-admin users can access Slack OAuth client secrets via the /api/w/{workspace}/workspaces/get_settings endpoint, potentially leading to unauthorized access to Slack integrations and OAuth token theft.

Affected Products

  • Windmill versions 1.634.6 and below

Discovery Timeline

  • 2026-02-20 - CVE CVE-2026-26964 published to NVD
  • 2026-02-20 - Last updated in NVD database

Technical Details for CVE-2026-26964

Vulnerability Analysis

This vulnerability stems from improper access control in Windmill's workspace settings retrieval functionality. The GET /api/w/{workspace}/workspaces/get_settings endpoint returns the slack_oauth_client_secret to any authenticated workspace member, regardless of their administrative privileges.

While it is expected behavior for non-admin users to see a redacted version of workspace settings (as some settings are necessary for the frontend to function correctly for all users), the Slack OAuth configuration should have been excluded from non-admin responses. This represents a legacy issue where the setting was stored as a plain value instead of using $variable indirection, and it was never added to the redaction logic.

Root Cause

The root cause is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The vulnerability exists because the Slack OAuth client secret was stored as a plain value rather than using variable indirection, and the field was never added to the redaction logic that should strip sensitive fields for non-admin users when returning workspace settings.

Attack Vector

The attack is network-based and requires low complexity to exploit. An attacker needs to be an authenticated workspace member (non-admin) to access the vulnerable endpoint. The attack flow involves:

  1. An authenticated non-admin user makes a GET request to /api/w/{workspace}/workspaces/get_settings
  2. The API returns the full workspace settings including the slack_oauth_client_secret field
  3. The attacker obtains the Slack OAuth client secret which can be used to impersonate the application's Slack integration
rust
 use hex;
 use sha2::{Digest, Sha256};
 use std::collections::{HashMap, HashSet};
+use strum::IntoEnumIterator;
 use uuid::Uuid;
-use strum::{IntoEnumIterator};
 use windmill_audit::audit_oss::{audit_log, AuditAuthorable};
 use windmill_audit::ActionKind;
 use windmill_common::db::UserDB;

Source: GitHub Commit Changes

Detection Methods for CVE-2026-26964

Indicators of Compromise

  • Unusual API requests to /api/w/{workspace}/workspaces/get_settings from non-admin users
  • Unexpected access patterns to workspace configuration endpoints
  • Slack OAuth token usage from unrecognized IP addresses or locations

Detection Strategies

  • Monitor API access logs for GET /api/w/{workspace}/workspaces/get_settings requests from non-administrative user accounts
  • Implement alerting on bulk or automated requests to workspace settings endpoints
  • Review Slack OAuth activity logs for signs of unauthorized application impersonation

Monitoring Recommendations

  • Enable detailed logging for all workspace settings API endpoints
  • Configure alerts for non-admin users accessing sensitive configuration endpoints
  • Monitor Slack integration activity for anomalous behavior or unauthorized access patterns

How to Mitigate CVE-2026-26964

Immediate Actions Required

  • Upgrade Windmill to version 1.635.0 or later immediately
  • Rotate all Slack OAuth client secrets that may have been exposed
  • Audit access logs to determine if the vulnerability was exploited
  • Review workspace user permissions and remove unnecessary access

Patch Information

Windmill has released version 1.635.0 which addresses this vulnerability. The fix ensures that slack_oauth_client_secret is properly stripped from the get_settings response for non-admin users. For detailed patch information, refer to the GitHub Security Advisory GHSA-f27g-j463-q85w and the GitHub Release v1.635.0.

Workarounds

  • Restrict workspace membership to only trusted users until the patch can be applied
  • Temporarily disable Slack integration if not critical to operations
  • Use network segmentation to limit access to Windmill API endpoints
  • Implement additional authentication layers for sensitive configuration endpoints
bash
# Upgrade Windmill to patched version
# Using Docker:
docker pull ghcr.io/windmill-labs/windmill:1.635.0

# Or update your deployment configuration to reference v1.635.0

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWindmill

  • SeverityLOW

  • CVSS Score2.7

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Commit Changes

  • GitHub Release v1.635.0

  • GitHub Security Advisory GHSA-f27g-j463-q85w
  • Related CVEs
  • CVE-2026-22683: Windmill Privilege Escalation Vulnerability

  • CVE-2026-23696: Windmill CE/EE SQL Injection Vulnerability

  • CVE-2026-33881: Windmill Developer Platform RCE Vulnerability

  • CVE-2026-29059: Windmill Path Traversal 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