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

CVE-2026-30928: Glances Information Disclosure Vulnerability

CVE-2026-30928 is an information disclosure flaw in Glances that exposes sensitive credentials through an unfiltered REST API endpoint. This article covers the technical details, affected versions, and mitigation steps.

Published: March 13, 2026

CVE-2026-30928 Overview

CVE-2026-30928 is a sensitive data exposure vulnerability in Glances, an open-source cross-platform system monitoring tool. Prior to version 4.5.1, the /api/4/config REST API endpoint returns the entire parsed Glances configuration file (glances.conf) via self.config.as_dict() with no filtering of sensitive values. The configuration file contains credentials for all configured backend services including database passwords, API tokens, JWT signing keys, and SSL key passwords.

This information disclosure vulnerability allows unauthenticated remote attackers to retrieve sensitive credentials by simply querying the exposed API endpoint, potentially leading to further compromise of connected systems and services.

Critical Impact

Unauthenticated attackers can access database passwords, API tokens, JWT signing keys, and SSL key passwords from the Glances configuration file via the REST API, enabling lateral movement and broader system compromise.

Affected Products

  • Glances versions prior to 4.5.1
  • Systems exposing the Glances REST API to untrusted networks
  • Environments with sensitive credentials configured in glances.conf

Discovery Timeline

  • 2026-03-10 - CVE-2026-30928 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30928

Vulnerability Analysis

The vulnerability exists in the Glances REST API implementation where the /api/4/config endpoint exposes the complete configuration dictionary without filtering sensitive fields. When the configuration file is parsed, it stores all values including credentials for backend integrations. The API endpoint returns this data directly to requesters without any authentication checks or sensitive data redaction.

The weakness is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The Glances configuration file typically contains credentials for various backend services such as InfluxDB, Cassandra, CouchDB, Elasticsearch, and other data stores, as well as authentication tokens for cloud services and monitoring integrations.

An attacker with network access to the Glances web interface can retrieve these credentials without any authentication, as the vulnerable endpoint does not require authorization by default.

Root Cause

The root cause is the lack of sensitive data filtering in the /api/4/config endpoint implementation. The self.config.as_dict() method returns the complete configuration dictionary including all credential fields, passwords, and secret keys without any sanitization or redaction.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending a simple HTTP GET request to the /api/4/config endpoint on any Glances instance exposing its REST API.

The exploitation process involves:

  1. Discovering a Glances instance with the web server enabled (default port 61208)
  2. Sending a GET request to /api/4/config
  3. Parsing the JSON response to extract sensitive credentials
  4. Using extracted credentials to access connected backend services

The vulnerability is particularly dangerous when Glances is exposed to the internet or untrusted network segments, as no prior access or authentication is required to extract the sensitive configuration data.

Detection Methods for CVE-2026-30928

Indicators of Compromise

  • Unusual or repeated HTTP GET requests to /api/4/config endpoint
  • Access to Glances API from unexpected IP addresses or network segments
  • Evidence of credential misuse on backend services configured in Glances
  • Unauthorized access to databases, cloud services, or monitoring platforms using credentials stored in glances.conf

Detection Strategies

  • Monitor web server access logs for requests to /api/4/config and /api/*/config endpoints
  • Implement network segmentation alerts for external access attempts to Glances API ports (default 61208)
  • Audit authentication logs on backend services for unexpected access using credentials stored in Glances configuration
  • Deploy web application firewalls (WAF) to detect and block suspicious API enumeration attempts

Monitoring Recommendations

  • Enable detailed access logging on Glances web server to capture all API requests with source IP addresses
  • Configure SIEM alerts for API endpoint enumeration patterns targeting configuration endpoints
  • Monitor for lateral movement indicators using credentials associated with Glances backend integrations
  • Implement network traffic analysis to detect data exfiltration from Glances API responses

How to Mitigate CVE-2026-30928

Immediate Actions Required

  • Upgrade Glances to version 4.5.1 or later immediately
  • Restrict network access to Glances REST API using firewall rules or network segmentation
  • Rotate all credentials stored in glances.conf including database passwords, API tokens, and SSL key passwords
  • Review access logs for evidence of prior exploitation and investigate any suspicious API access

Patch Information

The vulnerability is fixed in Glances version 4.5.1. The patch implements filtering of sensitive configuration values before returning the configuration data via the API endpoint. Organizations should update to 4.5.1 or later using their preferred package manager or by downloading from the official GitHub Release page.

For additional technical details on the fix, refer to the commit changes and the GitHub Security Advisory GHSA-gh4x-f7cq-wwx6.

Workarounds

  • Disable the Glances web server entirely if REST API access is not required by setting --disable-webui flag
  • Implement reverse proxy with authentication in front of Glances API endpoints
  • Use firewall rules to restrict access to Glances port 61208 to trusted management networks only
  • Remove sensitive credentials from glances.conf and use environment variables or external secret management where supported
bash
# Restrict Glances API access using iptables
iptables -A INPUT -p tcp --dport 61208 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 61208 -j DROP

# Alternatively, bind Glances to localhost only
glances -w --bind 127.0.0.1

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 Score8.7

  • EPSS Probability0.04%

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

  • GitHub Release v4.5.1

  • GitHub Security Advisory GHSA-gh4x-f7cq-wwx6
  • Related CVEs
  • CVE-2026-33533: 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