gobuster-lib/libgobuster/options.go

27 lines
536 B
Go
Raw Permalink Normal View History

2024-09-04 20:15:35 +00:00
package libgobuster
import "time"
// Options holds all options that can be passed to libgobuster
type Options struct {
Threads int
Debug bool
Wordlist string
WordlistOffset int
PatternFile string
Patterns []string
OutputFilename string
NoStatus bool
NoProgress bool
NoError bool
NoStdout bool
Quiet bool
Verbose bool
Delay time.Duration
}
// NewOptions returns a new initialized Options object
func NewOptions() *Options {
return &Options{}
}