1
1
mirror of https://github.com/OJ/gobuster.git synced 2024-11-15 08:45:21 +01:00
gobuster/libgobuster/options_http.go
Christian Mehlmauer 9b6813f4c4
reduce code reuse
2019-04-29 09:29:57 +02:00

19 lines
352 B
Go

package libgobuster
import (
"time"
)
// OptionsHTTP is the struct to hold all options for common HTTP options
type OptionsHTTP struct {
Password string
URL string
UserAgent string
Username string
Proxy string
Cookies string
Timeout time.Duration
FollowRedirect bool
InsecureSSL bool
}