Sanitized user-provided file names in HTTP multipart uploads
This commit is contained in:
parent
96e399a617
commit
68c0941666
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ public class ShowJavascript {
|
|||
|
||||
return WebResponseUtils.bytesToWebResponse(
|
||||
script.getBytes(StandardCharsets.UTF_8),
|
||||
inputFile.getOriginalFilename() + ".js");
|
||||
Filenames.toSimpleFileName(inputFile.getOriginalFilename()) + ".js");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue