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

CVE-2026-33533: Glances Information Disclosure Vulnerability

CVE-2026-33533 is an information disclosure flaw in Glances XML-RPC server that allows attackers to exfiltrate system monitoring data via CORS misconfiguration. This post covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-33533 Overview

CVE-2026-33533 is a high-severity CORS misconfiguration vulnerability affecting Glances, an open-source cross-platform system monitoring tool. Prior to version 4.5.3, the Glances XML-RPC server (activated with glances -s or glances --server) sends Access-Control-Allow-Origin: * on every HTTP response. Combined with the lack of Content-Type header validation, this allows attacker-controlled webpages to exfiltrate sensitive system monitoring data through CORS "simple requests."

Critical Impact

Complete exfiltration of hostname, OS version, IP addresses, CPU/memory/disk/network statistics, and the full process list including command lines which may contain tokens, passwords, or internal paths.

Affected Products

  • Glances versions prior to 4.5.3
  • Glances XML-RPC server mode (glances -s or glances --server)
  • Systems exposing Glances server to untrusted networks

Discovery Timeline

  • 2026-04-02 - CVE-2026-33533 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-33533

Vulnerability Analysis

This vulnerability is classified under CWE-942 (Permissive Cross-domain Policy with Untrusted Domains). The core issue stems from the Glances XML-RPC server implementing overly permissive CORS headers without proper request validation.

When the Glances server is started in server mode, it responds to all HTTP requests with the Access-Control-Allow-Origin: * header. This wildcard CORS policy, combined with the XML-RPC handler's failure to validate the Content-Type header, creates a browser-based attack vector.

An attacker can craft a malicious webpage that sends a POST request with Content-Type: text/plain containing a valid XML-RPC payload. Because this qualifies as a CORS "simple request," the browser sends it without performing a preflight check. The Glances server processes the XML body and returns the complete system monitoring dataset, which the attacker's JavaScript can read due to the permissive CORS header.

Root Cause

The root cause is twofold: (1) the use of a wildcard (*) in the Access-Control-Allow-Origin response header, and (2) the absence of Content-Type validation in the XML-RPC request handler. This combination allows cross-origin requests from any domain to successfully retrieve sensitive system monitoring data.

Attack Vector

The attack is network-based and requires user interaction. An attacker must lure a victim who has access to an exposed Glances server to visit a malicious webpage. The attacker's page then leverages the victim's browser as a proxy to query the Glances XML-RPC server and exfiltrate the response data.

The attack flow:

  1. Victim visits attacker-controlled webpage
  2. Malicious JavaScript sends POST request to Glances server with Content-Type: text/plain
  3. Browser treats this as a "simple request" (no preflight)
  4. Glances server processes XML-RPC payload and returns monitoring data
  5. Wildcard CORS header allows JavaScript to read the response
  6. Attacker receives sensitive system information

Detection Methods for CVE-2026-33533

Indicators of Compromise

  • Unusual cross-origin requests to Glances XML-RPC server endpoints
  • HTTP POST requests with Content-Type: text/plain containing XML-RPC payloads
  • Unexpected external referrers in Glances server access logs
  • Multiple rapid queries to monitoring endpoints from browser user-agents

Detection Strategies

  • Monitor network traffic for XML-RPC requests to Glances server from untrusted origins
  • Implement web application firewall rules to detect cross-origin requests to internal monitoring services
  • Review Glances server logs for requests originating from unexpected sources or containing unusual Content-Type headers
  • Deploy browser security policies (Content-Security-Policy) to prevent outbound connections to internal services

Monitoring Recommendations

  • Enable detailed logging on Glances server instances to capture request origins
  • Monitor for JavaScript-based data exfiltration patterns in network security tools
  • Audit exposed Glances instances for version compliance (ensure 4.5.3 or later)
  • Implement network segmentation to limit browser access to monitoring infrastructure

How to Mitigate CVE-2026-33533

Immediate Actions Required

  • Upgrade Glances to version 4.5.3 or later immediately
  • Restrict network access to Glances server instances using firewall rules
  • Avoid exposing Glances XML-RPC server to untrusted networks or the public internet
  • Consider using reverse proxy with proper CORS configuration and authentication

Patch Information

The vulnerability has been patched in Glances version 4.5.3. The fix addresses the permissive CORS policy in the XML-RPC server. For detailed patch information, refer to the GitHub Security Advisory GHSA-7p93-6934-f4q7 and the official release v4.5.3.

The security patch includes configuration changes as shown below:

text
 # Disable background color
 #disable_bg=True
 #
-# Specifics options for WebUI
-#----------------------------
+# Specifics options for Glances server
+#-------------------------------------
 # Set URL prefix for the WebUI and the API
 # Example: url_prefix=/glances/ => http://localhost/glances/
 # Note: The final / is mandatory

Source: GitHub Commit dcb39c3f12b2a1eec708c58d22d7a1d62bdf5fa1

Workarounds

  • Disable the Glances XML-RPC server if not required (glances without -s or --server flags)
  • Implement network-level access controls to restrict Glances server access to trusted hosts only
  • Deploy a reverse proxy with strict CORS policies and authentication in front of Glances
  • Use host-based firewall rules to limit connections to the Glances server port
bash
# Example: Restrict Glances server access using iptables
# Only allow connections from trusted management network
iptables -A INPUT -p tcp --dport 61209 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 61209 -j DROP

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGlances

  • SeverityHIGH

  • CVSS Score7.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/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-942
  • Technical References
  • GitHub Commit Details

  • GitHub Release v4.5.3

  • GitHub Security Advisory GHSA-7p93-6934-f4q7
  • Related CVEs
  • CVE-2026-30928: Glances Information Disclosure Vulnerability

  • CVE-2026-33641: Glances Privilege Escalation Vulnerability

  • CVE-2026-32610: Glances REST API CORS XSS 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