mirror of
https://github.com/OJ/gobuster.git
synced 2025-07-14 20:54:14 +02:00
22 lines
389 B
Go
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{}
|
|
}
|