mirror of
https://github.com/ffuf/ffuf
synced 2024-11-10 14:14:24 +00:00
Higher timeout value for requests
This commit is contained in:
parent
9a10389bbd
commit
a3c59eeb09
1 changed files with 1 additions and 1 deletions
|
@ -28,7 +28,7 @@ func NewSimpleRunner(conf *ffuf.Config) ffuf.RunnerProvider {
|
|||
simplerunner.client = &http.Client{
|
||||
|
||||
CheckRedirect: func(req *http.Request, via []*http.Request) error { return http.ErrUseLastResponse },
|
||||
Timeout: time.Duration(3 * time.Second),
|
||||
Timeout: time.Duration(10 * time.Second),
|
||||
Transport: &http.Transport{
|
||||
TLSClientConfig: &tls.Config{
|
||||
InsecureSkipVerify: conf.TLSSkipVerify,
|
||||
|
|
Loading…
Reference in a new issue