1
1
mirror of https://github.com/OJ/gobuster.git synced 2025-07-14 20:54:14 +02:00
gobuster/gobusterdns/options.go
2025-05-22 10:24:35 +02:00

22 lines
389 B
Go

package gobusterdns
import (
"time"
)
// OptionsDNS holds all options for the dns plugin
type OptionsDNS struct {
Domain string
CheckCNAME bool
WildcardForced bool
Resolver string
Protocol string
NoFQDN bool
Timeout time.Duration
}
// NewOptions returns a new initialized OptionsDNS
func NewOptions() *OptionsDNS {
return &OptionsDNS{}
}