Bump containernetworking/cni to v0.8.1

Fix CVE-2021-20206
This commit is contained in:
Navid Shaikh
2021-05-06 15:41:08 +05:30
parent ca38d18cbc
commit 185f65fbdd
4 changed files with 11 additions and 6 deletions

View File

@@ -18,6 +18,7 @@ import (
"fmt"
"os"
"path/filepath"
"strings"
)
// FindInPath returns the full path of the plugin by searching in the provided path
@@ -26,6 +27,10 @@ func FindInPath(plugin string, paths []string) (string, error) {
return "", fmt.Errorf("no plugin name provided")
}
if strings.ContainsRune(plugin, os.PathSeparator) {
return "", fmt.Errorf("invalid plugin name: %s", plugin)
}
if len(paths) == 0 {
return "", fmt.Errorf("no paths provided")
}