-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/go: "go get: unzip: malformed file path: double dot" #27299
Comments
I am also facing this issue. Since DynamoDB uses ANTLR to parse expression grammar, this effectively means we cannot use the aws-sdk in Golang with go modules until there is a fix. |
Consolidating into #28001. |
- installation instruction of go-bindata has changed, see golang/go#27299 for details - using a item-loop for installing multiple apt packages is deprecated, instead an array of package names should be used - remove filebrowser plugin from caddy since it's broken: filebrowser/filebrowser#554 - hash user password
Hey @bcmills @rsc, I realize that perhaps we plainly reject all double-dot-containing paths because we are trying to avoid trafficking/arbitrary/malicious filesystem access e.g. "foo/../secrets" where ".." contains the keys to the kingdom. if strings.Contains(path, "..") {
// Rejecting paths with ".." in them is a security consideration meant to
// prevent arbitrary filesystem accesses. However, the exception to
// this rule is that if the path's base consists of more
// than just "."+ which would disambiguate between ".", ".." and valid
// paths, then accept it.
base := filepath.Base(path)
if strings.Count(base, ".") == len(base) {
// Consists entirely of "."*
return fmt.Errorf("double dot")
}
} which would match and allow say "foo..ps..mp4" as well as the bug report from the ANTLR parser generator. I realize that we are almost releasing Go1.12 and perhaps could punt this to Go1.13 for safety but if this issue is deemed high priority perhaps let's discuss this -- also note that the ANTLR project replace the double dots that triggered this bug report, in August 2018(right after this issue was filed) as per antlr/antlr4#2341 but there might be other projects like this in the wild. I'll also kindly page @mikesamuel for an evaluation of the security considerations of how I've proposed accepting ".." in the base. |
Is there a workaround for this issue? Hitting it trying to depend on https://github.com/SpectoLabs/hoverfly
|
@DanielJonesEB good workaround is to create an issue in the project |
Sadly I'm depending on an old version of the library, so we can't go back in time to fix it. |
Found this same problem in the latest version of the Telegraf repo. The use of double dots appears to be perfectly legitimate since they are testing that the config loader doesn't descend into directories that start with double dots. I guess the test could be changed to dynamically create the double dot directory to avoid it being committed to the repo, but would be nice not to have to and still work with modules. |
|
- create go.sum - do not use .. in filenames in this repo due to golang/go#27299 Testing strategy: I almost successfully ran `test_all.sh` and found a data race, but I don't think it's related to this PR: ``` WARNING: DATA RACE Read at 0x00c00016cac0 by goroutine 29: github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:277 +0x14a github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:57 +0x2a2 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb Previous write at 0x00c00016cac0 by goroutine 28: github.com/spf13/pflag.sortFlags() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:204 +0x2f2 github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:270 +0x1b0 github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:55 +0xe9 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb ```
Used the workaround provided here: #26672 (comment) to bypass the error, basically add a |
Change https://golang.org/cl/197720 mentions this issue: |
i compiled the latest master source and still get this error, am i missing something?
|
alright! vscode use the absolute path |
- create go.sum - do not use .. in filenames in this repo due to golang/go#27299 Testing strategy: I almost successfully ran `test_all.sh` and found a data race, but I don't think it's related to this PR: ``` WARNING: DATA RACE Read at 0x00c00016cac0 by goroutine 29: github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:277 +0x14a github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:57 +0x2a2 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb Previous write at 0x00c00016cac0 by goroutine 28: github.com/spf13/pflag.sortFlags() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:204 +0x2f2 github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:270 +0x1b0 github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:55 +0xe9 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb ```
* add `README` for the `simple_cli` example * flagset checksum: add a mechanism to checksum the whole flagset * fix typo in watcher * add copyright notices * add status endpoint for debuging purposes * notifiers: add functions triggered on successful dyn flag sets * address govet and golint * fixup test * Change travis file. * fixup travis * fixup travis 2 * bring back the workaround for etcd-io/etcd/issues/3209 * increase etcd ctx timeouts on travis * fix up travis * endpoint: add checksums for static/dynamic * Update README.md * Update README.md * Update README.md * Update README.md * monitoring: add a Prometheus collector for flagset checksums * monitoring: add a readme mention * Update README.md * Update README.md * Fix a few typos and gofmt issues * Update README.md * MarkFlagDynamic is now public * proto3 flag support added * Add notes about DynProto3 * Add DynStringSet. * Change DynStringSet to `map[string]struct{}` for the set type. * Add Contains convenience method to DynStringSet. * Fix spurious leading spaces in output of DynStringSetValue.String(). The array is allocated with the same size as the map, instead of having the capacity of the map but size zero. This results in unintended leading empty string elements in the array. * Update README.md * kubernetes config map, first draft * updater test and READMIES * testdata * fixup travis * Update README.md * Update README.md * Update README.md * Update README.md * Make travis run in a container * travis fixup and gitingore * test coverage * Update README.md * add self returns * add file-read flags * Add support for go modules. - create go.sum - do not use .. in filenames in this repo due to golang/go#27299 Testing strategy: I almost successfully ran `test_all.sh` and found a data race, but I don't think it's related to this PR: ``` WARNING: DATA RACE Read at 0x00c00016cac0 by goroutine 29: github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:277 +0x14a github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:57 +0x2a2 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb Previous write at 0x00c00016cac0 by goroutine 28: github.com/spf13/pflag.sortFlags() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:204 +0x2f2 github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:270 +0x1b0 github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:55 +0xe9 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb ``` * Replace package author name, fixing codecgen version mismatch (etcd-io/etcd#10325 (comment)) * add circle config * Upgrade Prometheus client from v0.9.2 -> v0.9.3 to fix data race condition * Fixed compile error but the data race is still there... * Fixing test race condition, albeit heavy handedly Co-authored-by: Michal Witkowski <michal@improbable.io> Co-authored-by: Jonathan Boulle <jonathanboulle@gmail.com> Co-authored-by: Mark Nevill <nev@improbable.io> Co-authored-by: Stefan Sakalik <stefan@improbable.io> Co-authored-by: Janos Dobronszki <dobronszki@gmail.com> Co-authored-by: Thom May <thommay@improbable.io>
* Add support for go modules. - create go.sum - do not use .. in filenames in this repo due to golang/go#27299 Testing strategy: I almost successfully ran `test_all.sh` and found a data race, but I don't think it's related to this PR: ``` WARNING: DATA RACE Read at 0x00c00016cac0 by goroutine 29: github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:277 +0x14a github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:57 +0x2a2 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb Previous write at 0x00c00016cac0 by goroutine 28: github.com/spf13/pflag.sortFlags() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:204 +0x2f2 github.com/spf13/pflag.(*FlagSet).VisitAll() /home/stefan/usr/go/main/pkg/mod/github.com/spf13/pflag@v1.0.3/flag.go:270 +0x1b0 github.com/mwitkow/go-flagz.ChecksumFlagSet() /home/stefan/Projects/go-flagz/checksum.go:15 +0xc8 github.com/mwitkow/go-flagz/monitoring.(*flagSetCollector).Collect() /home/stefan/Projects/go-flagz/monitoring/collector.go:55 +0xe9 github.com/prometheus/client_golang/prometheus.(*Registry).Gather.func1() /home/stefan/usr/go/main/pkg/mod/github.com/prometheus/client_golang@v0.9.2/prometheus/registry.go:434 +0x1eb ``` * Replace package author name, fixing codecgen version mismatch (etcd-io/etcd#10325 (comment)) * add circle config * Upgrade Prometheus client from v0.9.2 -> v0.9.3 to fix data race condition * Fixed compile error but the data race is still there... * Fixing test race condition, albeit heavy handedly Co-authored-by: Stefan Sakalik <stefan@improbable.io> Co-authored-by: Janos Dobronszki <dobronszki@gmail.com> Co-authored-by: Thom May <thommay@improbable.io>
go version
downloaded yesterday (27 august)
I am trying to use ANTLR4 runtime support via go modules, steps to reproduce:
I guess double dots in some unrelated file is hardly a reason to diagnose a error
The text was updated successfully, but these errors were encountered: