Sanitize paths before evaluating access to route

This commit is contained in:
Andres Martinez Gotor
2025-04-02 09:41:11 +02:00
committed by Kevin Minehart
parent 5d0d55c0ed
commit 6d3b159e63
2 changed files with 17 additions and 1 deletions
+9 -1
View File
@@ -301,7 +301,15 @@ func (proxy *DataSourceProxy) validateRequest() error {
}
// route match
if !strings.HasPrefix(proxy.proxyPath, route.Path) {
r1, err := util.CleanRelativePath(proxy.proxyPath)
if err != nil {
return err
}
r2, err := util.CleanRelativePath(route.Path)
if err != nil {
return err
}
if !strings.HasPrefix(r1, r2) {
continue
}