Use SOCKS5 with auth in Chrome

0

1

I am trying to configure Google Chrome to use my proxy. It works fine with curl:

curl -v --socks5-hostname bla-bla.example:1080 -U bla:bla-bla https://www.google.com/

I've tried to use FoxyProxy, but I get ERR_SOCKS_CONNECTION_FAILED

I've also tried macOS advanced network preferences, result stays the same.

Skeeve

Posted 2018-04-19T21:30:01.220

Reputation: 103

Answers

2

Chrome, Internet Explorer, Edge only support SOCKS4.

Firefox supports 4, 4a and 5, but not with auth (although I understand there was a patch submitted).

If you want to use a web browser via SOCKS with auth, you could use something like Proxifier to divert the browser connections, or the AutoText SOCKS client (which supports GSSAPI authentication).

Adrien

Posted 2018-04-19T21:30:01.220

Reputation: 1 107