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

CVE-2025-3260: Grafana Dashboard Auth Bypass Vulnerability

CVE-2025-3260 is an authentication bypass flaw in Grafana's dashboard API endpoints that allows users to bypass folder and dashboard permissions. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-3260 Overview

A critical authorization bypass vulnerability has been identified in Grafana's dashboard API endpoints (/apis/dashboard.grafana.app/*). This vulnerability allows authenticated users to circumvent dashboard and folder permissions, enabling unauthorized access to sensitive monitoring data. The flaw affects all API versions including v0alpha1, v1alpha1, and v2alpha1.

Critical Impact

Authenticated users can bypass permission controls to view, edit, and delete dashboards and folders across the Grafana instance, regardless of their assigned permissions. Viewers gain read access to all dashboards, while Editors can perform full CRUD operations on any dashboard or folder.

Affected Products

  • Grafana Dashboard API (/apis/dashboard.grafana.app/* endpoints)
  • Grafana API versions: v0alpha1, v1alpha1, v2alpha1
  • Grafana instances with authenticated users (including anonymous users with viewer/editor roles)

Discovery Timeline

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

Technical Details for CVE-2025-3260

Vulnerability Analysis

This vulnerability is classified as CWE-863: Incorrect Authorization, where the Grafana application fails to properly enforce permission checks on the dashboard API endpoints. The flaw allows authenticated users to access resources beyond their authorized scope.

The impact varies based on user role:

  • Viewers: Can view all dashboards and folders regardless of assigned permissions
  • Editors: Can view, edit, and delete all dashboards and folders regardless of permissions, and can create dashboards in any folder
  • Anonymous users: When configured with viewer or editor roles, these users are similarly affected by the authorization bypass

Importantly, organization isolation boundaries remain intact, and the vulnerability does not grant access to datasources—limiting the scope to dashboard and folder operations only.

Root Cause

The root cause stems from improper authorization checks within the Grafana dashboard API endpoints. When processing requests to the /apis/dashboard.grafana.app/* endpoints across all alpha API versions, the application fails to validate whether the authenticated user has the necessary permissions to perform the requested operation on the target dashboard or folder resource.

Attack Vector

The vulnerability is exploitable over the network by any authenticated user. An attacker with valid credentials (even with minimal permissions like a Viewer role) can craft API requests directly to the vulnerable endpoints to access dashboards and folders they should not have permission to view or modify.

The attack requires:

  1. Valid authentication credentials to the Grafana instance
  2. Knowledge of the vulnerable API endpoint paths
  3. Target dashboard or folder identifiers

Since the vulnerability affects the API layer, exploitation can be performed programmatically without using the Grafana web interface, making it suitable for automated attacks.

Detection Methods for CVE-2025-3260

Indicators of Compromise

  • Unusual API access patterns to /apis/dashboard.grafana.app/* endpoints
  • Viewer accounts making requests to dashboards they should not have access to
  • Editor accounts modifying or deleting dashboards outside their permitted folders
  • Spike in dashboard API requests from specific user accounts
  • Access logs showing successful responses to restricted dashboard resources by low-privilege users

Detection Strategies

  • Monitor Grafana access logs for anomalous API calls to /apis/dashboard.grafana.app/v0alpha1/*, /apis/dashboard.grafana.app/v1alpha1/*, and /apis/dashboard.grafana.app/v2alpha1/* endpoints
  • Implement alerting for users accessing dashboards or folders outside their normal permission scope
  • Review audit logs for dashboard modifications by users who should only have viewer permissions
  • Correlate user role assignments with actual API access patterns to identify permission bypass attempts

Monitoring Recommendations

  • Enable detailed audit logging for all dashboard API endpoints in Grafana
  • Configure alerts for dashboard deletion or modification events from Viewer-role accounts
  • Implement network-level monitoring for high-volume API requests to the affected endpoints
  • Review user access patterns regularly to identify potential exploitation attempts

How to Mitigate CVE-2025-3260

Immediate Actions Required

  • Review the Grafana Security Advisory CVE-2025-3260 for official remediation guidance
  • Audit current user roles and permissions to understand potential exposure
  • Review access logs for evidence of exploitation
  • Consider restricting access to the alpha API endpoints at the network level until patched
  • Disable anonymous access if it's configured with viewer or editor roles

Patch Information

Grafana has released a security advisory addressing this vulnerability. Organizations should consult the Grafana Security Advisory for the latest patch information and upgrade to the recommended version as soon as possible.

Workarounds

  • Implement network-level access controls (firewall rules, reverse proxy rules) to restrict access to the /apis/dashboard.grafana.app/* endpoints
  • Disable the alpha API versions if not required for production use
  • Enforce strict network segmentation to limit who can reach the Grafana API endpoints
  • Temporarily disable anonymous authentication until the patch is applied
  • Use API gateway or WAF rules to block unauthorized access patterns to the vulnerable endpoints
bash
# Example: Nginx reverse proxy rule to restrict access to vulnerable endpoints
# Add to your Grafana reverse proxy configuration
location ~* ^/apis/dashboard\.grafana\.app/ {
    # Restrict access to admin IP ranges only
    allow 10.0.0.0/8;
    deny all;
    
    proxy_pass http://grafana:3000;
    proxy_set_header Host $host;
    proxy_set_header X-Real-IP $remote_addr;
}

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

  • SeverityHIGH

  • CVSS Score8.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-863
  • Technical References
  • Grafana Security Advisory CVE-2025-3260
  • Related CVEs
  • CVE-2021-39226: Grafana Auth Bypass Vulnerability

  • CVE-2025-3454: Grafana 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