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
    • 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-45222

CVE-2026-45222: Summarize Information Disclosure Flaw

CVE-2026-45222 is an information disclosure vulnerability in Summarize that exposes bearer tokens and API credentials through world-readable permissions. This article covers technical details, affected versions, impact, and mitigation.

Published: May 18, 2026

CVE-2026-45222 Overview

CVE-2026-45222 is an insecure file permissions vulnerability in the Summarize tool affecting versions through 0.14.1. The daemon creates its configuration directory and daemon.json file using default filesystem permissions on Unix-like systems. These defaults are typically world-readable, exposing sensitive contents to any local user account. The configuration file stores the daemon bearer token and persisted provider API credentials. Local attackers can read these secrets to authenticate to the daemon or reuse provider API keys outside the host. The issue is tracked under CWE-732: Incorrect Permission Assignment for Critical Resource and was remediated in commit 0cfb0fb.

Critical Impact

Local users on shared Unix-like hosts can read ~/.summarize/daemon.json, harvest the daemon bearer token, and recover stored provider API credentials.

Affected Products

  • Summarize versions up to and including 0.14.1
  • Deployments on Unix-like systems where ~/.summarize/ inherits a permissive umask
  • Multi-user hosts where additional local accounts can traverse the user home directory

Discovery Timeline

  • 2026-05-11 - CVE-2026-45222 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-45222

Vulnerability Analysis

The Summarize daemon persists its runtime configuration to ~/.summarize/daemon.json. This file holds the daemon bearer token used by clients to authenticate to the local daemon, as well as cached credentials for upstream AI providers. On Unix-like systems, fs.mkdir and the subsequent file write rely on the process umask to determine final permissions. With a common default umask of 0022, the directory becomes 0755 and the file 0644, both readable by any local account. Any process running under a different user can therefore open the file and exfiltrate secrets without elevated privileges.

Root Cause

The root cause is a missing explicit mode argument when creating the configuration directory and a missing chmod step when writing the configuration file. The application trusts the inherited umask to provide confidentiality, which is inappropriate for files that store long-lived bearer tokens and third-party API keys. This pattern maps directly to [CWE-732].

Attack Vector

Exploitation requires only local, low-privileged access to the host where Summarize is configured. An attacker reads ~/.summarize/daemon.json, extracts the bearer token, and sends authenticated requests to the daemon's local interface. The same file yields provider API keys that can be used from any host to consume billable services or access historical data tied to those credentials.

typescript
// Security patch in src/daemon/config.ts - fix: keep daemon config private
 }): Promise<string> {
   const configPath = resolveDaemonConfigPath(env);
   const dir = path.dirname(configPath);
-  await fs.mkdir(dir, { recursive: true });
+  await fs.mkdir(dir, { recursive: true, mode: 0o700 });
+  await fs.chmod(dir, 0o700).catch(() => {
+    // Best effort: Windows and some filesystems do not support POSIX modes.
+  });
+  await fs.chmod(configPath, 0o600).catch(() => {
+    // Tighten existing files before rewriting secrets; ignore first install.
+  });
   const primaryToken = normalizeDaemonToken(config.token);
   const tokens = normalizeDaemonTokens(
     Array.isArray(config.tokens) ? [primaryToken, ...config.tokens] : [primaryToken],

Source: GitHub Commit 0cfb0fb. The patch enforces 0o700 on the directory and 0o600 on daemon.json, restricting access to the owning user.

Detection Methods for CVE-2026-45222

Indicators of Compromise

  • Permissions on ~/.summarize/daemon.json other than 0600, or on ~/.summarize/ other than 0700, on Unix-like hosts running Summarize <= 0.14.1.
  • Read access to daemon.json by a user identifier that does not match the file owner in audit logs (auditd, fapolicyd, eBPF file telemetry).
  • Unexpected authenticated requests to the Summarize daemon's local endpoint from processes not associated with the legitimate user.
  • Provider-side API usage from IP addresses or workloads that have never previously called the affected API keys.

Detection Strategies

  • Hunt for file access events targeting */.summarize/daemon.json where the accessing UID differs from the file owner.
  • Inventory hosts running Summarize and verify the installed version is later than 0.14.1 or that the configuration directory has mode 0700.
  • Correlate provider API key usage telemetry with expected source hosts to surface stolen-key reuse.

Monitoring Recommendations

  • Enable file integrity monitoring on ~/.summarize/ for all user accounts where the daemon is installed.
  • Alert on chmod, cp, or cat operations against daemon.json executed by non-owning users.
  • Rotate bearer tokens and provider API keys on any host where permissive permissions were observed, and watch for anomalous use afterward.

How to Mitigate CVE-2026-45222

Immediate Actions Required

  • Upgrade Summarize to a version that includes commit 0cfb0fb (post 0.14.1).
  • Manually tighten existing installations with chmod 700 ~/.summarize and chmod 600 ~/.summarize/daemon.json.
  • Rotate the daemon bearer token and all provider API keys previously stored in daemon.json.
  • Audit historical file access on multi-user hosts to determine whether secrets were read before remediation.

Patch Information

The fix is delivered in commit 0cfb0fb and merged via GitHub Pull Request #214. The patch creates the configuration directory with mode 0o700 and forces daemon.json to mode 0o600 using fs.chmod, with best-effort handling for filesystems that do not support POSIX modes. Additional context is available in the VulnCheck Security Advisory.

Workarounds

  • Set a restrictive umask such as 0077 for the user account that runs the Summarize daemon before initial configuration.
  • Relocate ~/.summarize/ to a directory whose parent already enforces 0700 and explicitly chmod both the directory and file after any configuration change.
  • Avoid storing long-lived provider API keys in daemon.json; inject them via environment variables sourced from a secrets manager at daemon start.
bash
# Configuration example: enforce restrictive permissions on existing installs
chmod 700 "$HOME/.summarize"
chmod 600 "$HOME/.summarize/daemon.json"
umask 0077

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechSummarize

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.01%

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

  • GitHub Pull Request #214

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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