Content-Length rejection if specified larger than allowed size.
This commit is contained in:
parent
9d9f5b3a69
commit
b8f4b55f05
|
@ -228,6 +228,11 @@ func uploadRemote(c web.C, w http.ResponseWriter, r *http.Request) {
|
|||
}
|
||||
|
||||
func uploadHeaderProcess(r *http.Request, upReq *UploadRequest) {
|
||||
if len(r.Header.Get("Content-Length") > 0 {
|
||||
if r.Header.Get("Content-Length") > Config.maxSize {
|
||||
upReq.size = r.Header.Get("Content-Length")
|
||||
}
|
||||
}
|
||||
if r.Header.Get("Linx-Randomize") == "yes" {
|
||||
upReq.randomBarename = true
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue