shunf4 / proxychains-windows

Windows and Cygwin port of proxychains, based on MinHook and DLL Injection
GNU General Public License v2.0
962 stars 116 forks source link

Convert TLS 1.2 to TLS 1.3 from client > proxychains > proxy #49

Open DesweR opened 10 months ago

DesweR commented 10 months ago

I have a client that only supports TLS 1.2 and old cipher suites.

I need to get a client to open modern websites.

Is it possible for proxychains to connect to my local proxy via TLS 1.3 and modern cipher suites?

shunf4 commented 10 months ago

No. Proxychains only intercepts network connections and does SOCKS5 handshakes, and that is all.

To achieve what you said requires chaging of TLS handshake process, which is the payload of the TCP connection. See mitmproxy or my modified tcpproxy, but I won't guide you how to use them.