mirror of
https://github.com/OJ/gobuster.git
synced 2024-11-15 08:45:21 +01:00
19 lines
352 B
Go
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
|
|
}
|