minio/docs/debugging/inspect/go.mod
Harshavardhana e0fe7cc391
fix: information disclosure bug in preconditions GET (#19810)
precondition check was being honored before, validating
if anonymous access is allowed on the metadata of an
object, leading to metadata disclosure of the following
headers.

```
Last-Modified
Etag
x-amz-version-id
Expires:
Cache-Control:
```

although the information presented is minimal in nature,
and of opaque nature. It still simply discloses that an
object by a specific name exists or not without even having
enough permissions.
2024-05-27 12:17:46 -07:00

24 lines
668 B
Modula-2

module github.com/minio/minio/docs/debugging/inspect
go 1.21
require (
github.com/klauspost/compress v1.17.4
github.com/klauspost/filepathx v1.1.1
github.com/minio/colorjson v1.0.6
github.com/minio/madmin-go/v3 v3.0.36
github.com/secure-io/sio-go v0.3.1
github.com/tinylib/msgp v1.1.9
)
require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/minio/pkg/v2 v2.0.6 // indirect
github.com/philhofer/fwd v1.1.2 // indirect
golang.org/x/crypto v0.17.0 // indirect
golang.org/x/sys v0.15.0 // indirect
)