1 Commits

Author SHA1 Message Date
Alexandre Peixoto Ferreira
fe9b26d283 Fix sanitizing filenames
Signed-off-by: Alexandre Peixoto Ferreira <alexandref75@gmail.com>
2022-07-18 12:45:02 -05:00

View File

@@ -93,7 +93,7 @@ func readDevDirectory(dirToList string, allowedRecursions uint8) (files []string
}
func sanitizeName(path string) string {
return strings.Replace(path, "/", "_" ,-1)
return strings.Replace(path, "/!@#$%^&*()[]{}'`~.", "___________________",-1)
}
func findDevicesPattern(listDevices []string, pattern string) ([]string,error) {