<div dir="ltr">Hello guys,<div>I'm new to using stunnel but I find it quite a powerful tool. I'm doing a POC on how we can bypass our firewall even with DPI, and chose to use stunnel for an extra layer of cryptography. You don't have to worry about access to any VM mentioned here. Here is my scenario:</div><div><br></div><div>[CLIENT BROWSER] -->[STUNNEL CLIENT]-->[FIREWALL]-->[STUNNEL SERVER]-->[REVERSE PROXY]-->[FREE INTERNET]</div><div><br></div><div>So far I succeeded in getting HTTP working using stunnel CONNECT protocol to the firewall and going all the way through. The problem is when I try to access HTTPS, the connection get set to the stunnel server but it keeps waiting for something. Double checked all the logs, firewall can't discern, stunnel server get the connection, reverse proxy also get the socket connection. My hypothesis is that stunnel client gets the CONNECT from the browser and discard it, it uses its own way to connect to the firewall, instead of encrypting the CONNECT all the way through. As it may seems, I need a way to send 2 CONNECT packages. Does anyone know how can I proceed?</div><div><br></div><div>Follow my configs:</div><div>client = yes<br>output = /var/log/stunnel4/stunnel.log<br>debug = 7<br><br>[bypassclient]<br>accept = 4000<br>connect = firewall.example:3128<br>protocolHost = <a href="http://destination.com:443">destination.com:443</a><br>protocol = connect<br>requireCert = no<br>verifyChain = no<br>verifyPeer = no<br></div><div>--------------------------------------------------------------------------------------------------------------------</div><div>[bypassserver]</div><div>accept = <a href="http://0.0.0.0:443">0.0.0.0:443</a></div><div>connect = <a href="http://reverseproxy.com:8888">reverseproxy.com:8888</a></div><div>cert = /etc/ssl/cert.pem</div><div>key = /etc/ssl/key.pem<br></div><div>-----------------------------------------------------------------------------------------------------------------------</div><div><br></div><div><br></div><div>Thank you all in advance, already digging throw the source code (quite lost tough),</div><div>Hugo</div></div>