1
1
mirror of https://github.com/OJ/gobuster.git synced 2024-09-18 11:01:34 +02:00
gobuster/libgobuster/options.go
Christian Mehlmauer ba619dd1be
3.6
2023-08-14 10:17:02 +02:00

26 lines
519 B
Go

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
Quiet bool
Verbose bool
Delay time.Duration
}
// NewOptions returns a new initialized Options object
func NewOptions() *Options {
return &Options{}
}