1
1
Fork 0
mirror of https://github.com/OJ/gobuster.git synced 2024-05-28 04:56:03 +02:00
gobuster/libgobuster/options.go
2024-02-01 20:18:23 +00:00

19 lines
371 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
NoProgress bool
NoError bool
Quiet bool
Delay time.Duration
}