I have seen an example of using socat to accept ssl TCP traffic and forward the traffic to a non-ssl host:
socat TCP-LISTEN:443,reuseaddr,fork "^OPENSSL-SERVER,cert=server.pem | TCP:somehost:80"
Is it possible to do the opposite? I.e. I have a remote host that is ssl enabled and requires a client certificate, but my client is only able to connect via non-ssl connections.
I understand the security implications of this approach.
The answer for me was:
The certificate didn't match the hostname so I had to switch off verification (verify=0)