pkg/tls: remove InsecureSkipVerify=true flag (#4265)
CWE-295 code scanning alert flag this. Seems OK to just remove it. Signed-off-by: Miek Gieben <miek@miek.nl>
This commit is contained in:
parent
723e9b06a4
commit
049369583b
1 changed files with 0 additions and 5 deletions
|
@ -108,11 +108,6 @@ func loadRoots(caPath string) (*x509.CertPool, error) {
|
||||||
|
|
||||||
// NewHTTPSTransport returns an HTTP transport configured using tls.Config
|
// NewHTTPSTransport returns an HTTP transport configured using tls.Config
|
||||||
func NewHTTPSTransport(cc *tls.Config) *http.Transport {
|
func NewHTTPSTransport(cc *tls.Config) *http.Transport {
|
||||||
// this seems like a bad idea but was here in the previous version
|
|
||||||
if cc != nil {
|
|
||||||
cc.InsecureSkipVerify = true
|
|
||||||
}
|
|
||||||
|
|
||||||
tr := &http.Transport{
|
tr := &http.Transport{
|
||||||
Proxy: http.ProxyFromEnvironment,
|
Proxy: http.ProxyFromEnvironment,
|
||||||
Dial: (&net.Dialer{
|
Dial: (&net.Dialer{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue