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

CVE-2026-32610: Glances REST API CORS XSS Vulnerability

CVE-2026-32610 is a cross-site scripting flaw in Glances REST API that allows malicious websites to steal system monitoring data through CORS misconfiguration. This post covers technical details, affected versions, and fixes.

Published: March 20, 2026

CVE-2026-32610 Overview

CVE-2026-32610 is an Insecure Default Configuration vulnerability in Glances, an open-source cross-platform system monitoring tool. Prior to version 4.5.2, the Glances REST API web server ships with a default CORS configuration that sets allow_origins=["*"] combined with allow_credentials=True. When both of these options are enabled together, Starlette's CORSMiddleware reflects the requesting Origin header value in the Access-Control-Allow-Origin response header instead of returning the literal * wildcard. This effectively grants any website the ability to make credentialed cross-origin API requests to the Glances server, enabling cross-site data theft of system monitoring information, configuration secrets, and command line arguments from any user who has an active browser session with a Glances instance.

Critical Impact

Attackers can steal sensitive system monitoring data, configuration secrets, and command line arguments from Glances users by exploiting the permissive CORS configuration through malicious websites.

Affected Products

  • Glances versions prior to 4.5.2
  • Glances REST API web server with default CORS configuration
  • Systems running Glances with web interface enabled

Discovery Timeline

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

Technical Details for CVE-2026-32610

Vulnerability Analysis

The vulnerability resides in the default CORS (Cross-Origin Resource Sharing) configuration of the Glances REST API. The problematic combination occurs when allow_origins is set to the wildcard * (accepting all origins) while simultaneously enabling allow_credentials=True. According to the CORS specification, browsers should reject this combination, but Starlette's CORSMiddleware handles this by reflecting the requesting Origin header in the Access-Control-Allow-Origin response header. This behavior effectively bypasses browser security controls designed to prevent cross-origin credential sharing with arbitrary domains.

The vulnerability is classified under CWE-942 (Permissive Cross-domain Policy with Untrusted Domains), which describes scenarios where a web server allows cross-origin requests from untrusted sources, potentially exposing sensitive data to malicious actors.

Root Cause

The root cause is an insecure default configuration in the Glances configuration file where cors_credentials defaults to True while cors_origins defaults to *. This combination creates a security flaw where the Starlette CORS middleware reflects the origin header, allowing any website to make authenticated requests to the Glances API. The fix changes the default value of cors_credentials to False and explicitly warns users to only enable it when cors_origins is configured with specific trusted origins.

Attack Vector

The attack is network-based and requires user interaction. An attacker can craft a malicious website that makes cross-origin requests to a victim's Glances instance. When the victim visits the malicious site while having an active Glances session, the browser will include credentials with the cross-origin request due to the permissive CORS configuration. The attacker can then exfiltrate sensitive system monitoring information including CPU/memory usage, running processes, configuration data, and command line arguments that may contain secrets.

text
# Vulnerable Configuration (conf/glances.conf)
# Default is *
#cors_origins=*
# Indicate that cookies should be supported for cross-origin requests.
-# Default is True
-#cors_credentials=True
+# Default is False.
+# Set to True only when cors_origins is explicitly configured with specific origins.
+#cors_credentials=False
# Comma separated list of HTTP methods that should be allowed for cross-origin requests.
# Default is *
#cors_methods=*

Source: GitHub Commit Update

Detection Methods for CVE-2026-32610

Indicators of Compromise

  • Unexpected cross-origin requests to Glances API endpoints from unknown domains
  • Web server logs showing requests with suspicious Origin headers
  • Anomalous API access patterns from external referer domains

Detection Strategies

  • Monitor web server access logs for cross-origin requests to Glances API with credentials
  • Review Glances configuration files for insecure CORS settings (cors_credentials=True with cors_origins=*)
  • Implement network monitoring to detect data exfiltration from Glances instances

Monitoring Recommendations

  • Enable detailed logging for the Glances REST API to capture origin headers
  • Set up alerts for unusual API access patterns or high-volume data requests
  • Regularly audit Glances configuration files across deployed instances

How to Mitigate CVE-2026-32610

Immediate Actions Required

  • Upgrade Glances to version 4.5.2 or later immediately
  • Review and update CORS configuration to explicitly define trusted origins
  • Disable the web interface if not required for operations
  • Restrict network access to Glances instances using firewall rules

Patch Information

The vulnerability is fixed in Glances version 4.5.2. The patch modifies the default CORS configuration to set cors_credentials to False by default, preventing the insecure credential sharing behavior. Users can review the security fix in the GitHub Security Advisory GHSA-9jfm-9rc6-2hfq and the GitHub Release v4.5.2.

Workarounds

  • Explicitly set cors_credentials=False in the Glances configuration file
  • Configure cors_origins with specific trusted origins instead of using the wildcard *
  • Implement network-level access controls to restrict access to the Glances web interface
  • Consider running Glances behind a reverse proxy with proper CORS handling
bash
# Configuration example - glances.conf
# Set specific trusted origins instead of wildcard
cors_origins=https://trusted-dashboard.example.com

# Disable credentials for cross-origin requests (secure default)
cors_credentials=False

# Restrict methods if full API access is not required
cors_methods=GET

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechGlances

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

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

  • GitHub Release v4.5.2

  • GitHub Security Advisory GHSA-9jfm-9rc6-2hfq
  • Related CVEs
  • CVE-2026-33641: Glances Privilege Escalation Vulnerability

  • CVE-2026-33533: Glances Information Disclosure Vulnerability

  • CVE-2026-30928: Glances Information Disclosure Vulnerability

  • CVE-2026-30930: Glances SQL Injection 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