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
    • 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-2025-9572

CVE-2025-9572: Foreman GraphQL API Auth Bypass Flaw

CVE-2025-9572 is an authorization bypass flaw in Foreman's GraphQL API that lets low-privileged users access metadata beyond their permissions. This article covers the technical details, affected versions, and mitigations.

Published: March 6, 2026

CVE-2025-9572 Overview

An authorization flaw in Foreman's GraphQL API allows low-privileged users to access metadata beyond their assigned permissions. Unlike the REST API, which correctly enforces access controls, the GraphQL endpoint does not apply proper filtering, leading to an authorization bypass. This vulnerability represents a significant gap in access control implementation where the GraphQL API fails to enforce the same permission checks that are properly implemented in the REST API.

Critical Impact

Low-privileged authenticated users can bypass authorization controls to access sensitive metadata through the GraphQL API endpoint, potentially exposing confidential system information.

Affected Products

  • Foreman (versions with GraphQL API enabled)
  • Red Hat Satellite (as referenced in RHSA advisories)
  • Red Hat products using Foreman components

Discovery Timeline

  • 2026-02-27 - CVE-2025-9572 published to NVD
  • 2026-02-27 - Last updated in NVD database

Technical Details for CVE-2025-9572

Vulnerability Analysis

This vulnerability stems from inconsistent authorization enforcement between Foreman's two API implementations. While the REST API properly validates user permissions before returning data, the GraphQL API fails to apply equivalent access control filters. This discrepancy allows authenticated users with limited privileges to query and retrieve metadata that should be restricted based on their role assignments.

The vulnerability is classified under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor), indicating that the flaw results in information disclosure to users who should not have access to specific data. The network-accessible nature of this vulnerability means any authenticated user with network access to the Foreman GraphQL endpoint can potentially exploit this weakness.

Root Cause

The root cause lies in the authorization layer implementation within Foreman's GraphQL API. When processing GraphQL queries, the application fails to apply the same permission-based filtering logic that exists in the REST API. This creates an authorization bypass where the GraphQL resolvers return data without verifying whether the requesting user has appropriate permissions to access the queried resources.

Attack Vector

The attack vector requires network access and low-privilege authentication. An attacker must first obtain valid credentials to access the Foreman system, even with minimal permissions. Once authenticated, they can craft GraphQL queries targeting metadata resources that would normally be restricted. The GraphQL endpoint processes these queries without proper authorization checks, returning data that the user's assigned role should not permit access to.

The vulnerability can be exploited by sending carefully constructed GraphQL queries to the API endpoint. An attacker would enumerate available fields and types through GraphQL introspection, then query for sensitive metadata such as host configurations, organizational structures, or system parameters that exceed their authorized scope. For technical exploitation details, refer to the Foreman Security Advisory and Red Hat Bug Report #2391715.

Detection Methods for CVE-2025-9572

Indicators of Compromise

  • Unusual GraphQL query patterns from low-privileged user accounts attempting to access administrative metadata
  • Increased volume of GraphQL API requests compared to baseline activity, particularly introspection queries
  • Authentication logs showing users querying resources outside their typical operational scope
  • GraphQL query logs containing requests for sensitive metadata fields by unauthorized accounts

Detection Strategies

  • Implement logging for all GraphQL API requests with user identity correlation to identify permission boundary violations
  • Monitor for GraphQL introspection queries which may indicate reconnaissance activity preceding exploitation
  • Compare user permission levels against resources accessed through GraphQL queries to detect authorization bypasses
  • Deploy API anomaly detection to identify unusual query patterns or data access requests

Monitoring Recommendations

  • Enable detailed audit logging on Foreman GraphQL endpoints to capture query content and user context
  • Establish baseline GraphQL usage patterns per user role to facilitate deviation detection
  • Configure alerts for GraphQL queries accessing metadata types that don't align with the requesting user's assigned permissions
  • Review GraphQL query logs regularly for signs of enumeration or unauthorized data access attempts

How to Mitigate CVE-2025-9572

Immediate Actions Required

  • Apply the security patches referenced in Red Hat Security Advisories RHSA-2025:21886, RHSA-2025:21893, RHSA-2025:21894, and RHSA-2025:21897
  • Review and audit user accounts with GraphQL API access to ensure principle of least privilege
  • Consider temporarily disabling GraphQL API access if not operationally required until patches are applied
  • Implement network-level restrictions to limit GraphQL endpoint access to trusted sources

Patch Information

Security patches addressing this authorization bypass are available through the following Red Hat Security Advisories:

  • RHSA-2025:21886 - Red Hat Security Advisory
  • RHSA-2025:21893 - Red Hat Security Advisory
  • RHSA-2025:21894 - Red Hat Security Advisory
  • RHSA-2025:21897 - Red Hat Security Advisory

Additional details can be found in the Foreman Security Update and the Red Hat CVE Record.

Workarounds

  • Disable GraphQL API access entirely if the functionality is not required for operations
  • Implement network segmentation to restrict GraphQL endpoint access to administrative networks only
  • Use reverse proxy or API gateway rules to block GraphQL queries from users without explicit authorization
  • Monitor and audit all GraphQL API activity until patches can be applied to production systems
bash
# Example: Restrict GraphQL endpoint access via Apache configuration
# Add to Foreman Apache configuration to limit GraphQL access
<Location /api/graphql>
    Require group foreman-admins
    # Or restrict by IP range
    # Require ip 10.0.0.0/8 192.168.0.0/16
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechForeman

  • SeverityMEDIUM

  • CVSS Score5.0

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • Red Hat Security Advisory RHSA-2025:21886

  • Red Hat Security Advisory RHSA-2025:21893

  • Red Hat Security Advisory RHSA-2025:21894

  • Red Hat Security Advisory RHSA-2025:21897

  • Red Hat CVE Record CVE-2025-9572

  • Red Hat Bug Report #2391715

  • Foreman Security Update 2025-9572
  • Related CVEs
  • CVE-2026-1961: Foreman WebSocket Proxy RCE 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