We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbe918 commit 08d8ef7Copy full SHA for 08d8ef7
go/socket-proxy/main.go
@@ -84,7 +84,7 @@ func httpProxyBlockedPaths(url string) bool {
84
regexp.MustCompile(`(?i)secrets.*`), // could exfil credentials
85
regexp.MustCompile(`(?i)configs.*`), // could exfil credentials
86
regexp.MustCompile(`(?i)swarm/unlockkey.*`), // could exfil credentials
87
- regexp.MustCompile(`(?i)images/get.*`), // could exfil container data
+ regexp.MustCompile(`(?i)images/get(/|)$`), // could exfil container data
88
}
89
90
for _, pattern := range blockedPatterns {
0 commit comments