i search how to do double proxy chainning (simple proxy chainning work fine!) ?!
like that : client browser -> titanium web proxy -> (http proxy via first connect with basic auth) corporate proxy -> external https (with basic auth) internet proxy -> destination web server
client request to the titanium web proxy point of view:
CONNECT www.google.fr HTTP/1.1
Host: www.google.fr
<browser decrypt traffic with google site>
from titanium web proxy point of view :
CONNECT myremoteproxy.com:443 HTTP/1.1
Host: myremoteproxy.com
Proxy-Authorization: basic <encoded user/pass corporate proxy>
<then decrypt proxy communication in titanium proxy chain, them send client PROXY request>
CONNECT www.google.fr HTTP/1.1
Host: www.google.fr
Proxy-Authorization: basic <encoded user/pass myremoteproxy proxy>
<let the browser decrypt traffic with google site>
i search how to do double proxy chainning (simple proxy chainning work fine!) ?! like that : client browser -> titanium web proxy -> (http proxy via first connect with basic auth) corporate proxy -> external https (with basic auth) internet proxy -> destination web server
client request to the titanium web proxy point of view:
from titanium web proxy point of view :