* Fix for #193

* Fix for #193 - Changelog
This commit is contained in:
Damian Schwyrz 2020-03-20 11:41:13 +01:00 committed by GitHub
parent 7ffd74d87e
commit ccdd377930
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 0 deletions

View file

@ -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

View file

@ -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,
}, },
}} }}