Update dependency @grafana/data to v8.2.3 [SECURITY] #12
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
8.1.3
->8.2.3
GitHub Vulnerability Alerts
CVE-2021-41174
Today we are releasing Grafana 8.2.3. This patch release includes an important security fix for an issue that affects all Grafana versions from 8.0.0-beta1.
Grafana Cloud instances have already been patched and an audit did not find any usage of this attack vector. Grafana Enterprise customers were provided with updated binaries under embargo.
CVE-2021-41174 XSS vulnerability on unauthenticated pages
Summary
CVSS Score: 6.9 Medium
CVSS:CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:H/A:N/E:U/RL:O/RC:R/CR:L/MAV:N/MAC:H/MPR:N/MUI:R/MS:C/MC:N/MI:H/MA:L
We received a security report to security@grafana.com on 2021-10-21 about a vulnerability in Grafana regarding the XSS vulnerability.
It was later identified as affecting Grafana versions from 8.0.0-beta1 to 8.2.2. CVE-2021-41174 has been assigned to this vulnerability.
Impact
If an attacker is able to convince a victim to visit a URL referencing a vulnerable page, arbitrary JavaScript content may be executed within the context of the victim's browser.
The user visiting the malicious link must be unauthenticated and the link must be for a page that contains the login button in the menu bar.
There are two ways an unauthenticated user can open a page in Grafana that contains the login button:
/dashboard-solo/snapshot/*
/dashboard/snapshot/*
/invite/:code
The url has to be crafted to exploit AngularJS rendering and contain the interpolation binding for AngularJS expressions. AngularJS uses double curly braces for interpolation binding: {{ }}
An example of an expression would be:
{{constructor.constructor(‘alert(1)’)()}}
. This can be included in the link URL like this:https://play.grafana.org/dashboard/snapshot/%7B%7Bconstructor.constructor('alert(1)')()%7D%7D?orgId=1
When the user follows the link and the page renders, the login button will contain the original link with a query parameter to force a redirect to the login page. The URL is not validated and the AngularJS rendering engine will execute the JavaScript expression contained in the URL.
Attack audit
We can not guarantee that the below will identify all attacks, so if you find something using the audit process described below, you should consider doing a full assessment.
Through reverse proxy/load balancer logs
To determine if your Grafana installation has been exploited for this vulnerability, search through your reverse proxy/load balancer access logs for instances where the path contains
{{
followed by something that would invoke JavaScript code. For example, this could be code that attempts to show a fake login page or to steal browser or session data. The OWASP cheat sheet has several examples of XSS attacks.Through the Grafana Enterprise audit feature
If you enabled “Log web requests” in your configuration with
router_logging = true
, look for requests wherepath
contains{{
followed by something that would invoke JavaScript code.Patched versions
Release 8.2.3:
Solutions and mitigations
Download and install the appropriate patch for your version of Grafana.
Grafana Cloud instances have already been patched, and Grafana Enterprise customers were provided with updated binaries under embargo.
Workaround
If for some reason you cannot upgrade, you can use a reverse proxy or similar to block access to block the literal string
{{
in the path.Example of an Nginx rule to block the literal string
{{
:Timeline and postmortem
Here is a detailed timeline starting from when we originally learned of the issue. All times in UTC.
Reporting security issues
If you think you have found a security vulnerability, please send a report to security@grafana.com. This address can be used for all of
Grafana Labs' open source and commercial products (including but not limited to Grafana, Tempo, Loki, k6, Tanka, and Grafana Cloud, Grafana Enterprise, and grafana.com). We only accept vulnerability reports at this address. We would prefer that you encrypt your message to us using our PGP key. The key fingerprint is:
F988 7BEA 027A 049F AE8E 5CAA D125 8932 BE24 C5CA
The key is available from keyserver.ubuntu.com by searching for security@grafana.
Security announcements
There is a Security category on the Grafana blog where we will post a summary, remediation, and mitigation details for any patch containing security fixes and you can subscribe to updates from our Security Announcements RSS feed.
Release Notes
grafana/grafana (@grafana/data)
v8.2.3
: 8.2.3 (2021-11-03)Compare Source
Download page
What's new highlights
v8.2.2
: 8.2.2 (2021-10-21)Compare Source
Download page
What's new highlights
Features and enhancements
Bug fixes
v8.2.1
: 8.2.1 (2021-10-11)Compare Source
Download page
What's new highlights
Bug fixes
v8.2.0
: 8.2.0 (2021-10-07)Compare Source
Download page
What's new highlights
Features and enhancements
Bug fixes
Plugin development fixes & changes
v8.1.8
: 8.1.8 (2021-12-07)Compare Source
Download page
What's new highlights
Security: Fixes CVE-2021-43798. For more information, see our blog
v8.1.7
: 8.1.7 (2021-10-06)Compare Source
Download page
What's new highlights
Bug fixes
v8.1.6
: 8.1.6 (2021-10-05)Compare Source
Download page
What's new highlights
Bug fixes
v8.1.5
: 8.1.5 (2021-09-21)Compare Source
Download page
What's new highlights
Bug fixes
v8.1.4
: 8.1.4 (2021-09-16)Compare Source
Download page
What's new highlights
Features and enhancements
Bug fixes
/
as separator. #39185, @dsotirakisConfiguration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.