mirror of
https://github.com/minio/minio.git
synced 2024-12-27 15:45:55 -05:00
e0fe7cc391
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.
15 lines
289 B
Modula-2
15 lines
289 B
Modula-2
module github.com/minio/minio/docs/debugging/xattr
|
|
|
|
go 1.21
|
|
|
|
require (
|
|
github.com/olekukonko/tablewriter v0.0.5
|
|
github.com/pkg/xattr v0.4.9
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-runewidth v0.0.15 // indirect
|
|
github.com/rivo/uniseg v0.4.4 // indirect
|
|
golang.org/x/sys v0.15.0 // indirect
|
|
)
|