convox / convox

MinVersion is missing from this TLS configuration GO-S1020
Security
Major
11 days agoa year old
MinVersion is missing from this TLS configuration: tls.Config
124	}
125
126	t := common.NewDefaultTransport()
127	t.TLSClientConfig = &tls.Config{InsecureSkipVerify: true}128
129	proxy.Transport = t
130
MinVersion is missing from this TLS configuration: tls.Config
19	}
20
21	if common.DefaultBool(opts.TLS, false) {
22		cn = tls.Client(cn, &tls.Config{})23	}
24
25	if err := common.Pipe(cn, rw); err != nil {
MinVersion is missing from this TLS configuration: tls.Config
26func InsecureHTTPClient() *http.Client {
27	t := NewDefaultTransport()
28
29	t.TLSClientConfig = &tls.Config{30		InsecureSkipVerify: true,
31	}
32