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

CVE-2026-30829: Checkmate Information Disclosure Flaw

CVE-2026-30829 is an information disclosure vulnerability in Bluewavelabs Checkmate that exposes unpublished status pages to unauthenticated users. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2026-30829 Overview

CVE-2026-30829 is an unauthenticated information disclosure vulnerability affecting Bluewavelabs Checkmate, an open-source, self-hosted tool designed to track and monitor server hardware, uptime, response times, and incidents in real-time. The vulnerability exists in the GET /api/v1/status-page/:url endpoint, which fails to enforce authentication or verify whether a status page is published before returning full status page details. As a result, unpublished status pages and their associated internal data are accessible to any unauthenticated user via direct API requests.

Critical Impact

Unauthorized users can access unpublished status pages and internal monitoring data without authentication, potentially exposing sensitive infrastructure information and incident details.

Affected Products

  • Bluewavelabs Checkmate versions prior to 3.4.0

Discovery Timeline

  • 2026-03-07 - CVE CVE-2026-30829 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-30829

Vulnerability Analysis

This information disclosure vulnerability stems from a missing authentication check in the Checkmate status page API. The /api/v1/status-page/:url endpoint is designed to retrieve status page information but lacks proper access controls. When a user creates a status page in Checkmate and chooses not to publish it, the expectation is that this page remains private. However, the vulnerable endpoint returns complete status page data regardless of the page's publication state, and does so without requiring any authentication credentials.

The vulnerability allows attackers to enumerate and access status pages that administrators intentionally kept private, potentially revealing internal infrastructure details, incident history, server health metrics, and other sensitive monitoring data that could be leveraged for reconnaissance in targeted attacks.

Root Cause

The root cause is improper access control implementation (CWE-200: Exposure of Sensitive Information to an Unauthorized Actor). The API endpoint lacks two critical security checks: authentication verification to ensure the requester has valid credentials, and authorization verification to confirm the status page is marked as published before returning its contents. This design flaw allows the endpoint to serve sensitive data to unauthenticated requesters.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending direct HTTP GET requests to the /api/v1/status-page/:url endpoint with predictable or enumerated URL slugs. Since no authentication is required, the attacker simply needs network access to the Checkmate instance. The vulnerability can be exploited through basic HTTP requests—no special tools or sophisticated techniques are necessary.

By guessing or brute-forcing common status page URL patterns, an attacker could systematically discover and access unpublished status pages containing potentially sensitive monitoring information about the target's infrastructure.

Detection Methods for CVE-2026-30829

Indicators of Compromise

  • Unusual volume of requests to /api/v1/status-page/ endpoints from external or unfamiliar IP addresses
  • Access log entries showing requests to status page URLs that were never published or shared publicly
  • Sequential or pattern-based requests to the status page API indicative of enumeration attempts

Detection Strategies

  • Monitor web server access logs for unauthenticated requests to the /api/v1/status-page/:url endpoint
  • Implement rate limiting and alerting on excessive requests to status page API endpoints
  • Review application logs for access to unpublished status page resources

Monitoring Recommendations

  • Enable detailed API request logging in Checkmate to track access patterns to status page endpoints
  • Configure SIEM rules to detect enumeration behavior targeting the status page API
  • Establish baseline traffic patterns for the status page endpoint and alert on anomalies

How to Mitigate CVE-2026-30829

Immediate Actions Required

  • Upgrade Bluewavelabs Checkmate to version 3.4.0 or later immediately
  • Audit access logs for evidence of exploitation prior to patching
  • Review any unpublished status pages for sensitive information that may have been exposed
  • Consider restricting network access to the Checkmate instance to trusted IP ranges until patching is complete

Patch Information

This vulnerability has been patched in Checkmate version 3.4.0. The fix implements proper authentication enforcement and publication status verification on the /api/v1/status-page/:url endpoint. Users should upgrade to this version or later to remediate the vulnerability. For detailed patch information, refer to the GitHub Security Advisory GHSA-57xf-wg6w-fjrr.

Workarounds

  • Restrict network access to the Checkmate instance using firewall rules or network segmentation until the patch can be applied
  • Place a reverse proxy in front of Checkmate that requires authentication for all API endpoints
  • Remove sensitive information from unpublished status pages until the upgrade is completed

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechBluewavelabs Checkmate

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200

  • NVD-CWE-noinfo
  • Vendor Resources
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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