mirror of
https://github.com/ffuf/ffuf
synced 2024-11-10 06:04:17 +00:00
Support older versions of TLS regardless of Go defaults (#671)
* Explicitly allow TLS1.0 in HTTP client * Add CHANGELOG.md entry
This commit is contained in:
parent
627c8710cd
commit
a3bd865aef
2 changed files with 2 additions and 0 deletions
|
@ -2,6 +2,7 @@
|
|||
- master
|
||||
- New
|
||||
- Changed
|
||||
- Explicitly allow TLS1.0
|
||||
|
||||
- v2.0.0
|
||||
- New
|
||||
|
|
|
@ -59,6 +59,7 @@ func NewSimpleRunner(conf *ffuf.Config, replay bool) ffuf.RunnerProvider {
|
|||
TLSHandshakeTimeout: time.Duration(time.Duration(conf.Timeout) * time.Second),
|
||||
TLSClientConfig: &tls.Config{
|
||||
InsecureSkipVerify: true,
|
||||
MinVersion: tls.VersionTLS10,
|
||||
Renegotiation: tls.RenegotiateOnceAsClient,
|
||||
ServerName: conf.SNI,
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue