evans icon indicating copy to clipboard operation
evans copied to clipboard

Support insecureSkipVerify option in TLS config

Open maheshnayak1 opened this issue 5 months ago • 0 comments

Describe the bug

GO langauage has the support to skip server TLS verification on the client. This is for Nodes which does not have SAN inscribed in their certificate.

If we set InsecureSkipVerify to true to tell the client to skip the verification

tlsConfig := &tls.Config{ InsecureSkipVerify: true, }

Can you please implement this? It will help a lot of us to connect to stubborn nodes whose certificates are hardcoded with non-compatible SAN values.

https://github.com/grpc/grpc-go/issues/4396#issuecomment-836217335

To reproduce

Expected behavior

Screenshots

Environment

  • OS:
  • Terminal:
  • Evans version:
  • protoc version:
  • protoc plugin version (if you are using):

Additional context

maheshnayak1 avatar Sep 25 '24 00:09 maheshnayak1