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-2020-11110

CVE-2020-11110: Grafana Stored XSS Vulnerability

CVE-2020-11110 is a stored cross-site scripting flaw in Grafana through version 6.7.1 that enables attackers to inject malicious JavaScript via the originalUrl field. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 4, 2026

CVE-2020-11110 Overview

CVE-2020-11110 is a stored Cross-Site Scripting (XSS) vulnerability affecting Grafana through version 6.7.1. The vulnerability exists due to insufficient input protection in the originalUrl field, which allows an attacker to inject malicious JavaScript code. This code executes when a victim clicks on "Open Original Dashboard" after visiting a crafted snapshot, potentially leading to session hijacking, credential theft, or unauthorized actions performed on behalf of the victim.

Critical Impact

Attackers can inject persistent JavaScript code that executes in the context of authenticated user sessions, potentially compromising sensitive monitoring data and administrative access to Grafana instances.

Affected Products

  • Grafana versions through 6.7.1
  • NetApp E-Series Performance Analyzer

Discovery Timeline

  • 2020-07-27 - CVE-2020-11110 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-11110

Vulnerability Analysis

This stored XSS vulnerability (CWE-79) stems from inadequate sanitization of user-controlled input in Grafana's snapshot functionality. Grafana allows users to create dashboard snapshots that can be shared with others. When creating or viewing these snapshots, the originalUrl field captures the source dashboard URL. However, the application fails to properly sanitize this field before rendering it in the user interface.

The vulnerability requires low privileges to exploit, meaning an authenticated user with basic access can craft a malicious snapshot. The attack requires user interaction—specifically, the victim must visit the malicious snapshot and click on the "Open Original Dashboard" link. When triggered, the injected JavaScript executes within the victim's browser session, potentially accessing cookies, session tokens, and other sensitive data associated with the Grafana instance.

Root Cause

The root cause of this vulnerability is insufficient input validation and output encoding in the Grafana snapshot handling code. The originalUrl field accepts user input that is later rendered in the web interface without proper HTML entity encoding or JavaScript escaping. This allows attackers to embed script tags or JavaScript event handlers that execute when the content is rendered in a victim's browser.

Attack Vector

The attack follows a network-based vector where an authenticated attacker creates a crafted dashboard snapshot containing malicious JavaScript in the originalUrl field. The attacker then shares or distributes the link to this snapshot. When victims with active Grafana sessions view the snapshot and interact with the "Open Original Dashboard" functionality, the injected script executes in their browser context.

The vulnerability mechanism involves crafting a snapshot with JavaScript payload embedded in the originalUrl parameter. When the snapshot is rendered and a user clicks on "Open Original Dashboard," the unsanitized URL triggers script execution. For detailed technical analysis, refer to the GitHub Grafana Changelog.

Detection Methods for CVE-2020-11110

Indicators of Compromise

  • Unusual or suspicious JavaScript code patterns in dashboard snapshot originalUrl fields
  • Snapshots containing HTML tags such as <script>, <img onerror>, or similar injection vectors
  • Unexpected network requests originating from Grafana dashboard pages to external domains
  • User reports of unexpected behavior or pop-ups when viewing dashboard snapshots

Detection Strategies

  • Implement web application firewall (WAF) rules to detect XSS patterns in Grafana snapshot requests
  • Monitor Grafana application logs for snapshot creation events with unusually long or encoded URLs
  • Deploy browser-based XSS detection tools that can identify malicious script execution attempts
  • Conduct periodic security audits of stored snapshot data to identify potential malicious payloads

Monitoring Recommendations

  • Enable detailed logging for snapshot creation and access events in Grafana
  • Configure alerting for Content Security Policy (CSP) violations that may indicate XSS attempts
  • Monitor for unusual patterns in snapshot sharing or viewing activity
  • Implement user behavior analytics to detect anomalous access to snapshot functionality

How to Mitigate CVE-2020-11110

Immediate Actions Required

  • Upgrade Grafana to version 6.7.2 or later immediately
  • Review existing dashboard snapshots for potentially malicious content in the originalUrl field
  • Consider temporarily disabling snapshot functionality if immediate patching is not possible
  • Implement Content Security Policy (CSP) headers to mitigate XSS impact

Patch Information

Grafana has addressed this vulnerability in versions released after 6.7.1. Organizations should upgrade to the latest stable version of Grafana to receive this security fix along with other security improvements. Detailed patch information is available in the GitHub Grafana Changelog. NetApp customers should also consult the NetApp Security Advisory for guidance on affected E-Series Performance Analyzer deployments.

Workarounds

  • Implement a reverse proxy with XSS filtering capabilities in front of Grafana instances
  • Deploy Content Security Policy headers with strict script-src directives to limit script execution
  • Restrict snapshot creation permissions to trusted administrators only
  • Consider disabling the snapshot feature entirely if it is not required for business operations
  • Regularly audit and purge old or unnecessary dashboard snapshots
bash
# Example Content Security Policy header configuration for nginx
# Add to your Grafana server configuration

add_header Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self'; connect-src 'self'; frame-ancestors 'self';" always;

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechGrafana

  • SeverityMEDIUM

  • CVSS Score5.4

  • EPSS Probability75.74%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Grafana Changelog

  • NetApp Security Advisory
  • Related CVEs
  • CVE-2026-32117: Grafana Cubism Panel XSS Vulnerability

  • CVE-2025-41117: Grafana Explore Traces XSS Vulnerability

  • CVE-2025-4123: Grafana XSS Vulnerability via Redirect

  • CVE-2025-6023: Grafana OSS Open Redirect XSS Vulnerability
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