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-2022-21713

CVE-2022-21713: Grafana Auth Bypass Vulnerability

CVE-2022-21713 is an authentication bypass vulnerability in Grafana that exposes multiple API endpoints, allowing authenticated attackers to view unauthorized team data. This article covers technical details, affected versions, impact, and mitigation.

Published: February 18, 2026

CVE-2022-21713 Overview

CVE-2022-21713 is an authorization bypass vulnerability in Grafana, the popular open-source monitoring and observability platform. The vulnerability affects multiple API endpoints that fail to properly validate user authorization, allowing authenticated attackers to access team information they should not be permitted to view. This represents a classic Insecure Direct Object Reference (IDOR) pattern combined with improper access control in the Teams API functionality.

Critical Impact

Authenticated users can enumerate team data, view team member information, and discover the total number of teams in the Grafana instance, potentially exposing sensitive organizational structure and user information.

Affected Products

  • Grafana versions 5.0.0-beta1 through affected releases
  • NetApp E-Series Performance Analyzer
  • Fedora 34, 35, and 36

Discovery Timeline

  • 2022-02-08 - CVE-2022-21713 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-21713

Vulnerability Analysis

This vulnerability stems from improper authorization checks (CWE-863) and Insecure Direct Object Reference (CWE-639) in Grafana's Teams API. The affected endpoints process authenticated requests without verifying whether the requesting user has legitimate access to the requested team resources. An attacker who has any valid authentication to the Grafana instance can exploit these endpoints to access data belonging to teams they are not members of.

The vulnerability affects three distinct API endpoints, each exposing different levels of unauthorized data access:

  1. /teams/:teamId - Returns complete team details when queried with a specific team ID, regardless of the user's membership in that team
  2. /teams/:search - Exposes the total count of teams in search results, including teams the user cannot access
  3. /teams/:teamId/members - When the editors_can_admin flag is enabled, reveals team membership information for arbitrary teams

Root Cause

The root cause is the absence of proper authorization middleware on the Teams API endpoints. While these endpoints require authentication (the user must be logged in), they fail to enforce authorization checks to verify the authenticated user's permission to access the specific team resources being requested. This creates a horizontal privilege escalation scenario where any authenticated user can access data belonging to other teams.

Attack Vector

The attack is network-based and requires only low-privilege authenticated access to the Grafana instance. An attacker can exploit this vulnerability through the following approach:

The attacker first authenticates to Grafana with any valid user account, even one with minimal permissions. They can then systematically query the /teams/:teamId endpoint with incrementing team IDs to enumerate all teams in the system. For each valid team ID discovered, the attacker receives full team details that would normally be restricted. If the editors_can_admin configuration flag is enabled, the attacker can additionally query /teams/:teamId/members to retrieve member lists for each discovered team.

This information disclosure can reveal organizational structure, team compositions, and user identities that could be leveraged for further targeted attacks or social engineering campaigns.

Detection Methods for CVE-2022-21713

Indicators of Compromise

  • Unusual patterns of API requests to /api/teams/* endpoints from a single user session
  • Sequential or enumeration-style requests to team endpoints with incrementing numeric IDs
  • High volume of team API queries from users who are not team administrators
  • Access log entries showing successful responses to team endpoints for users not in those teams

Detection Strategies

  • Monitor Grafana access logs for anomalous patterns of requests to /teams/:teamId and related endpoints
  • Implement rate limiting on team API endpoints to detect and slow enumeration attempts
  • Deploy web application firewall (WAF) rules to identify and alert on sequential parameter manipulation patterns
  • Review audit logs for users accessing team data outside their normal access scope

Monitoring Recommendations

  • Enable verbose logging on Grafana API endpoints to capture full request details
  • Configure alerting for unusual spikes in team-related API calls per user session
  • Implement baseline monitoring for normal team API access patterns to identify anomalies
  • Regularly audit user access patterns against team membership to detect unauthorized access attempts

How to Mitigate CVE-2022-21713

Immediate Actions Required

  • Upgrade Grafana to version 7.5.15 or 8.3.5 or later immediately
  • Review access logs for evidence of exploitation prior to patching
  • Audit team configurations and membership for any unauthorized changes
  • Consider temporarily restricting network access to Grafana instances until patching is complete

Patch Information

Grafana has released security patches addressing this vulnerability. Users should upgrade to Grafana 7.5.15 or 8.3.5 or later versions. The fix was implemented in GitHub Pull Request #45083, which adds proper authorization checks to the affected Teams API endpoints. Additional details are available in the Grafana Security Blog Post and the GitHub Security Advisory GHSA-63g3-9jq3-mccv.

Workarounds

  • There are no known workarounds for this vulnerability; upgrading is the only remediation
  • Restrict network access to Grafana instances to trusted users and networks as an interim measure
  • Disable the editors_can_admin flag if not required to reduce the attack surface for the members endpoint
  • Implement additional network-level access controls to limit who can reach the Grafana API
bash
# Verify current Grafana version
grafana-server -v

# For systemd-based installations, restart after upgrade
sudo systemctl restart grafana-server

# Check Grafana configuration for editors_can_admin setting
grep -r "editors_can_admin" /etc/grafana/

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 Score4.3

  • EPSS Probability0.18%

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

  • CWE-639
  • Technical References
  • GitHub Security Advisory GHSA-63g3-9jq3-mccv

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • NetApp Security Advisory NTAP-20220303-0005
  • Vendor Resources
  • GitHub Pull Request Update

  • Grafana Blog Security Release
  • Related CVEs
  • CVE-2026-21724: Grafana OSS Auth Bypass Vulnerability

  • CVE-2021-39226: Grafana Auth Bypass Vulnerability

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

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