Commit 7031b922 by Marcus Efraimsson

Only allow 32 hexadecimal digits for the avatar hash

parent a04ef6ce
...@@ -15,14 +15,14 @@ import ( ...@@ -15,14 +15,14 @@ import (
"net/http" "net/http"
"net/url" "net/url"
"path/filepath" "path/filepath"
"regexp"
"strconv" "strconv"
"strings"
"sync" "sync"
"time" "time"
"github.com/grafana/grafana/pkg/infra/log" "github.com/grafana/grafana/pkg/infra/log"
"github.com/grafana/grafana/pkg/models"
"github.com/grafana/grafana/pkg/setting" "github.com/grafana/grafana/pkg/setting"
"gopkg.in/macaron.v1"
gocache "github.com/patrickmn/go-cache" gocache "github.com/patrickmn/go-cache"
) )
...@@ -73,9 +73,15 @@ type CacheServer struct { ...@@ -73,9 +73,15 @@ type CacheServer struct {
cache *gocache.Cache cache *gocache.Cache
} }
func (this *CacheServer) Handler(ctx *macaron.Context) { var validMD5 = regexp.MustCompile("^[a-fA-F0-9]{32}$")
urlPath := ctx.Req.URL.Path
hash := urlPath[strings.LastIndex(urlPath, "/")+1:] func (this *CacheServer) Handler(ctx *models.ReqContext) {
hash := ctx.Params("hash")
if len(hash) != 32 || !validMD5.MatchString(hash) {
ctx.JsonApiErr(404, "Avatar not found", nil)
return
}
var avatar *Avatar var avatar *Avatar
obj, exists := this.cache.Get(hash) obj, exists := this.cache.Get(hash)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment