Revert "Added function to sanitize strings by escaping quotes (#2360)" (#2367)

This reverts commit fe5e5f592b.
This commit is contained in:
Ankit Chawla
2022-02-21 15:34:38 +05:30
committed by GitHub
parent fe5e5f592b
commit 1d22b7596c
7 changed files with 1 additions and 61 deletions
+1 -5
View File
@@ -31,7 +31,6 @@ import (
"go.opencensus.io/plugin/ochttp"
"go.uber.org/zap"
"github.com/fission/fission/pkg/utils"
"github.com/fission/fission/pkg/utils/otel"
)
@@ -80,9 +79,6 @@ func (ss *StorageService) uploadHandler(w http.ResponseWriter, r *http.Request)
}
defer file.Close()
//sanitize string to prevent security issues
handler.Filename = utils.EscapeQuotes(handler.Filename)
// stow wants the file size, but that's different from the
// content length, the content length being the size of the
// encoded file in the HTTP request. So we require an
@@ -100,6 +96,7 @@ func (ss *StorageService) uploadHandler(w http.ResponseWriter, r *http.Request)
if err != nil {
ss.logger.Error("error parsing 'X-File-Size' header",
zap.Error(err),
zap.Strings("header", fileSizeS),
zap.String("filename", handler.Filename))
http.Error(w, "missing or bad X-File-Size header", http.StatusBadRequest)
return
@@ -178,7 +175,6 @@ func (ss *StorageService) downloadHandler(w http.ResponseWriter, r *http.Request
// stream it to response
err = ss.storageClient.copyFileToStream(fileId, w)
if err != nil {
fileId = utils.EscapeQuotes(fileId)
ss.logger.Error("error getting file from storage client", zap.Error(err), zap.String("file_id", fileId))
if err == ErrNotFound {
http.Error(w, "Error retrieving item: not found", http.StatusNotFound)
-3
View File
@@ -27,8 +27,6 @@ import (
"github.com/graymeta/stow"
"github.com/pkg/errors"
"go.uber.org/zap"
"github.com/fission/fission/pkg/utils"
)
type (
@@ -175,7 +173,6 @@ func (client *StowClient) copyFileToStream(fileId string, w io.Writer) error {
return ErrWritingFileIntoResponse
}
fileId = utils.EscapeQuotes(fileId)
client.logger.Debug("successfully wrote file into httpresponse", zap.String("file", fileId))
return nil
}