banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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-3454

CVE-2025-3454: Grafana Auth Bypass Vulnerability

CVE-2025-3454 is an authorization bypass flaw in Grafana's datasource proxy API that allows attackers to bypass access controls using URL path manipulation. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-3454 Overview

This vulnerability in Grafana's datasource proxy API allows authorization checks to be bypassed by adding an extra slash character in the URL path. Users with minimal permissions could gain unauthorized read access to GET endpoints in Alertmanager and Prometheus datasources. The issue primarily affects datasources that implement route-specific permissions, including Alertmanager and certain Prometheus-based datasources.

Critical Impact

Attackers with low-privilege access can bypass authorization controls and gain unauthorized read access to sensitive monitoring data in Alertmanager and Prometheus datasources by manipulating URL paths.

Affected Products

  • Grafana (versions with datasource proxy API)
  • Alertmanager datasources
  • Prometheus-based datasources with route-specific permissions

Discovery Timeline

  • 2025-06-02 - CVE-2025-3454 published to NVD
  • 2025-06-02 - Last updated in NVD database

Technical Details for CVE-2025-3454

Vulnerability Analysis

This authorization bypass vulnerability (CWE-285: Improper Authorization) exists in Grafana's datasource proxy API. The flaw stems from improper handling of URL path normalization, where the addition of an extra slash character (/) in the request path allows attackers to circumvent route-specific authorization checks.

When Grafana processes requests to datasource proxy endpoints, it performs authorization validation against defined routes. However, the authorization logic fails to properly normalize URL paths before matching them against permission rules. This discrepancy allows authenticated users with minimal privileges to craft requests that bypass intended access controls.

The vulnerability is network-accessible and requires only low-level authentication to exploit. While the scope is changed (affecting resources beyond the vulnerable component), the impact is limited to confidentiality through unauthorized read access to GET endpoints.

Root Cause

The root cause is improper authorization validation in Grafana's datasource proxy API. The authorization mechanism does not adequately normalize or sanitize URL paths before performing permission checks. When an attacker appends an additional slash character to the URL path, the authorization logic fails to recognize the modified path as requiring elevated permissions, while the underlying routing mechanism still processes the request successfully.

This is a classic path normalization bypass where different components interpret URL paths differently—the authorization layer sees one path while the routing layer interprets another.

Attack Vector

The attack vector is network-based and requires an authenticated user with minimal permissions on the Grafana instance. An attacker exploits this vulnerability by:

  1. Identifying protected GET endpoints in Alertmanager or Prometheus datasources
  2. Crafting malicious requests with an additional slash character in the URL path
  3. Sending the modified request through the datasource proxy API
  4. Bypassing authorization checks to access restricted data

The vulnerability enables unauthorized read access to monitoring configuration and alert data that should be restricted to privileged users.

Detection Methods for CVE-2025-3454

Indicators of Compromise

  • Unusual URL patterns in access logs containing double slashes (//) in datasource proxy paths
  • Low-privilege users accessing Alertmanager or Prometheus endpoints they should not have permission to view
  • Anomalous GET request patterns to /api/datasources/proxy/ endpoints
  • Access log entries showing successful responses to malformed URL paths

Detection Strategies

  • Monitor Grafana access logs for URL paths containing consecutive slashes in datasource proxy requests
  • Implement web application firewall (WAF) rules to detect and flag path traversal patterns
  • Configure alerting on authorization audit logs for access anomalies to datasource endpoints
  • Review user access patterns to identify potential exploitation attempts

Monitoring Recommendations

  • Enable verbose logging for Grafana's datasource proxy API
  • Deploy network monitoring to detect anomalous request patterns to Grafana endpoints
  • Implement SIEM rules to correlate low-privilege user activity with access to restricted datasource endpoints
  • Regularly audit user permissions and access logs for Alertmanager and Prometheus datasources

How to Mitigate CVE-2025-3454

Immediate Actions Required

  • Review and apply security patches from Grafana when available
  • Audit current user permissions and restrict unnecessary access to datasource configurations
  • Implement WAF rules to normalize and sanitize URL paths before they reach Grafana
  • Monitor access logs for signs of exploitation attempts

Patch Information

Grafana has released a security advisory addressing this vulnerability. Administrators should consult the Grafana Security Advisory CVE-2025-3454 for specific patch versions and upgrade instructions. Apply the latest security updates as soon as possible to remediate this authorization bypass vulnerability.

Workarounds

  • Implement reverse proxy or WAF rules to normalize URL paths and block requests with consecutive slashes
  • Restrict network access to Grafana instances to trusted networks only
  • Review and minimize user permissions, applying principle of least privilege
  • Disable or restrict access to affected Alertmanager and Prometheus datasources until patching is complete
  • Enable additional authentication controls for datasource proxy endpoints
bash
# Example nginx configuration to normalize URL paths
# Add to your Grafana reverse proxy configuration
merge_slashes on;

# Block requests with double slashes to datasource proxy
location ~* /api/datasources/proxy/.*//.* {
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechGrafana

  • SeverityMEDIUM

  • CVSS Score5.0

  • EPSS Probability0.01%

  • 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-285
  • Technical References
  • Grafana Security Advisory CVE-2025-3454
  • Related CVEs
  • CVE-2021-39226: Grafana Auth Bypass Vulnerability

  • CVE-2025-3260: Grafana Dashboard Auth Bypass Vulnerability

  • CVE-2024-1442: Grafana Auth Bypass Vulnerability

  • CVE-2023-6152: Grafana Email Verification Bypass Flaw
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
  • English
  • 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