1
1
Fork 0
mirror of https://github.com/OJ/gobuster.git synced 2024-05-06 11:16:05 +02:00
gobuster/gobusterdns/options.go
Christian Mehlmauer ba619dd1be
3.6
2023-08-14 10:17:02 +02:00

22 lines
393 B
Go

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