Skip to content

Commit

Permalink
Added nosec directive for gosec
Browse files Browse the repository at this point in the history
  • Loading branch information
Ne0nd0g committed Nov 2, 2023
1 parent 0a70aa9 commit 5931532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clients/http/http.go
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ func getClient(protocol string, proxyURL string, ja3 string, parrot string, inse
// Setup TLS configuration
TLSConfig := &tls.Config{
MinVersion: tls.VersionTLS12,
InsecureSkipVerify: insecure,
InsecureSkipVerify: insecure, // #nosec G402 - intentionally configurable to allow self-signed certificates. See https://github.com/Ne0nd0g/merlin/issues/59
CipherSuites: []uint16{
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
tls.TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA,
Expand Down

0 comments on commit 5931532

Please sign in to comment.