Skip to content

Commit

Permalink
Support older versions of TLS regardless of Go defaults (#671)
Browse files Browse the repository at this point in the history
* Explicitly allow TLS1.0 in HTTP client

* Add CHANGELOG.md entry
  • Loading branch information
joohoi committed Apr 21, 2023
1 parent 627c871 commit a3bd865
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
- master
- New
- Changed
- Explicitly allow TLS1.0

- v2.0.0
- New
Expand Down
1 change: 1 addition & 0 deletions pkg/runner/simple.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit a3bd865

Please sign in to comment.