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

CVE-2026-32691: Canonical Juju Race Condition Vulnerability

CVE-2026-32691 is a race condition flaw in Canonical Juju's secrets management subsystem that allows authenticated unit agents to claim secret ownership. This article covers technical details, affected versions, and mitigation.

Published: March 20, 2026

CVE-2026-32691 Overview

A race condition vulnerability exists in the secrets management subsystem of Canonical Juju, an open-source application modeling tool used for deploying, configuring, and managing applications on cloud infrastructure. The flaw allows an authenticated unit agent to exploit a timing window between secret ID generation and the creation of the secret's first revision, enabling unauthorized ownership claims of newly initialized secrets.

Critical Impact

An authenticated attacker can intercept and claim ownership of secrets during initialization, gaining unauthorized read access to sensitive configuration data and credentials stored in the Juju secrets management system.

Affected Products

  • Canonical Juju versions 3.0.0 through 3.6.18

Discovery Timeline

  • 2026-03-18 - CVE-2026-32691 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-32691

Vulnerability Analysis

This vulnerability is classified as a Time-of-Check Time-of-Use (TOCTOU) race condition (CWE-708) that affects the secrets management workflow in Juju. The flaw exists in the two-phase process of secret creation: first, a unique Secret ID is generated, and then a separate operation creates the first revision of the secret with its actual content.

The network-accessible nature of this vulnerability means that authenticated unit agents on the same Juju controller can potentially exploit this timing window. However, successful exploitation requires precise timing and authentication as a unit agent within the same Juju environment, which increases the complexity of the attack.

When exploited, an attacker gains read access to the initial secret revision, which may contain sensitive data such as database credentials, API keys, TLS certificates, or other configuration secrets that Juju manages for deployed applications.

Root Cause

The root cause is an improper resolution of the race condition in the secrets management subsystem. The vulnerability arises because the secret ownership assignment is not atomically linked to the secret creation process. The temporal gap between generating a Juju Secret ID and establishing the first revision creates an exploitable window where another authenticated unit agent can intercept and claim ownership before the legitimate owner completes the initialization.

This design flaw violates the principle of atomic operations for security-sensitive actions, where the generation of an identifier and the binding of ownership should occur as an indivisible transaction.

Attack Vector

The attack requires network access and authentication as a unit agent within the Juju environment. An attacker who has compromised or controls a unit agent on the same Juju controller can monitor for secret initialization events and attempt to race the legitimate owner by submitting an ownership claim for the newly generated Secret ID.

The attack flow involves:

  1. Attacker gains authentication as a unit agent within the Juju controller
  2. Attacker monitors or predicts secret initialization events
  3. When a new Secret ID is generated, the attacker races to claim ownership
  4. If successful, the attacker can read the contents of the initial secret revision

Due to the high attack complexity required (timing precision and pre-existing authenticated access), exploitation in practice is challenging but not impossible in environments where unit agent credentials may be exposed or shared.

Detection Methods for CVE-2026-32691

Indicators of Compromise

  • Unexpected secret ownership changes in Juju audit logs
  • Multiple unit agents attempting to claim the same Secret ID within milliseconds
  • Anomalous patterns of secret access from unit agents that did not create those secrets
  • Rapid succession of secret creation and ownership claim API calls from different agents

Detection Strategies

  • Enable comprehensive audit logging on the Juju controller to track all secret management operations
  • Monitor for secret ownership claims that originate from unit agents different from the expected creator
  • Implement alerting for race condition patterns: multiple ownership claims for the same Secret ID within a short time window
  • Review unit agent authentication patterns for anomalous behavior

Monitoring Recommendations

  • Configure Juju controller audit logs to capture all secrets API operations with timestamps
  • Deploy log aggregation and analysis to correlate secret creation events with ownership claims
  • Establish baselines for normal secret management operations to identify deviations
  • Monitor network traffic between unit agents and the Juju controller for unusual API call patterns

How to Mitigate CVE-2026-32691

Immediate Actions Required

  • Upgrade Canonical Juju to a patched version beyond 3.6.18
  • Review Juju audit logs for evidence of exploitation or suspicious secret ownership patterns
  • Rotate any secrets that may have been exposed during the vulnerable window
  • Restrict network access to the Juju controller to limit the attack surface

Patch Information

Canonical has released security updates to address this vulnerability. Organizations should upgrade their Juju installations to the latest patched versions. For detailed remediation guidance, refer to the GitHub Security Advisory GHSA-gfgr-6hrj-85ww.

The fix likely implements atomic secret creation and ownership binding to eliminate the race condition window.

Workarounds

  • Limit the number of unit agents with access to the Juju controller to reduce the pool of potential attackers
  • Implement additional network segmentation to isolate unit agents from each other
  • Monitor and audit all secret management operations until patches can be applied
  • Consider temporarily avoiding the creation of new highly sensitive secrets until the environment is patched
bash
# Check current Juju version
juju version

# Upgrade Juju controller (example for snap installation)
sudo snap refresh juju --channel=latest/stable

# Review audit logs for suspicious secret operations
juju debug-log --replay | grep -i "secret"

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechCanonical Juju

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-708
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-4370: Canonical Juju Auth Bypass Vulnerability

  • CVE-2026-32692: Canonical Juju Auth Bypass Vulnerability

  • CVE-2026-32693: Canonical Juju Auth Bypass Vulnerability

  • CVE-2026-32694: Canonical Juju Information Disclosure Flaw
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