mirror of
https://github.com/OJ/gobuster.git
synced 2024-12-18 09:54:10 +01:00
0a0cab949f
* retry on timeout * Google Cloud Bucket enumeration * colors in output * goreleaser * fix nil reference errors
17 lines
328 B
Go
17 lines
328 B
Go
package gobustergcs
|
|
|
|
import (
|
|
"github.com/OJ/gobuster/v3/libgobuster"
|
|
)
|
|
|
|
// OptionsGCS is the struct to hold all options for this plugin
|
|
type OptionsGCS struct {
|
|
libgobuster.BasicHTTPOptions
|
|
MaxFilesToList int
|
|
}
|
|
|
|
// NewOptionsGCS returns a new initialized OptionsS3
|
|
func NewOptionsGCS() *OptionsGCS {
|
|
return &OptionsGCS{}
|
|
}
|