apply security patch: release-11.2.9/368-202504020742.patch

commit 2ac4c7f1f19b91863210b796526879cc4b026808
Author: Andres Martinez Gotor <andres.martinez@grafana.com>
Date:   Wed Apr 2 09:41:11 2025 +0200

    Sanitize paths before evaluating access to route
This commit is contained in:
github-actions[bot]
2025-04-22 18:21:28 +00:00
parent 3b5f49275b
commit 0ab76df765
2 changed files with 17 additions and 1 deletions
+8
View File
@@ -257,6 +257,14 @@ func TestDataSourceProxy_routeRule(t *testing.T) {
err = proxy.validateRequest()
require.NoError(t, err)
})
t.Run("path with slashes and user is editor", func(t *testing.T) {
ctx, _ := setUp()
proxy, err := setupDSProxyTest(t, ctx, ds, routes, "//api//admin")
require.NoError(t, err)
err = proxy.validateRequest()
require.Error(t, err)
})
})
t.Run("plugin route with RBAC protection user is allowed", func(t *testing.T) {