mirror of
https://github.com/ffuf/ffuf
synced 2024-11-10 06:04:17 +00:00
parent
7ffd74d87e
commit
ccdd377930
2 changed files with 2 additions and 0 deletions
|
@ -5,6 +5,7 @@
|
||||||
- New CLI flag `-maxtime-job` to set max. execution time per job.
|
- New CLI flag `-maxtime-job` to set max. execution time per job.
|
||||||
- Changed behaviour of `-maxtime`, can now be used for entire process.
|
- Changed behaviour of `-maxtime`, can now be used for entire process.
|
||||||
- Changed
|
- Changed
|
||||||
|
- Added tls renegotiation flag to fix #193 in http.Client
|
||||||
|
|
||||||
- v1.0.2
|
- v1.0.2
|
||||||
- Changed
|
- Changed
|
||||||
|
|
|
@ -53,6 +53,7 @@ func NewSimpleRunner(conf *ffuf.Config, replay bool) ffuf.RunnerProvider {
|
||||||
MaxConnsPerHost: 500,
|
MaxConnsPerHost: 500,
|
||||||
TLSClientConfig: &tls.Config{
|
TLSClientConfig: &tls.Config{
|
||||||
InsecureSkipVerify: true,
|
InsecureSkipVerify: true,
|
||||||
|
Renegotiation: tls.RenegotiateOnceAsClient,
|
||||||
},
|
},
|
||||||
}}
|
}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue