From 59d1435d652812a8505e8924ebafc7ccab437cb5 Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Mon, 8 Nov 2021 17:47:29 -0800 Subject: [PATCH] s3: avoid possible attacks by version --- weed/s3api/stats.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/weed/s3api/stats.go b/weed/s3api/stats.go index b667b32a0..973d8c0eb 100644 --- a/weed/s3api/stats.go +++ b/weed/s3api/stats.go @@ -2,7 +2,6 @@ package s3api import ( stats_collect "github.com/chrislusf/seaweedfs/weed/stats" - "github.com/chrislusf/seaweedfs/weed/util" "net/http" "strconv" "time" @@ -28,7 +27,7 @@ func (r *StatusRecorder) Flush() { func track(f http.HandlerFunc, action string) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { - w.Header().Set("Server", "SeaweedFS S3 "+util.VERSION) + w.Header().Set("Server", "SeaweedFS S3") recorder := NewStatusResponseWriter(w) start := time.Now() f(recorder, r)