Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a browser which supports Socks5 with authentication?

I have checked IE8, FF 3.5 , Opera 9 none of them have support for proxy authentication for socks5 proxy server.

Can anyone point me to enable socks 5 authentication or any other browser which has automation APIs available and works with sock5 proxy authentication.

like image 713
Sumit Ghosh Avatar asked Feb 28 '23 03:02

Sumit Ghosh


2 Answers

Opera supports socks5 with authentication. To set you password and username for socks open opera:config page in address bar and then open proxy options.

like image 62
nono Avatar answered Mar 02 '23 17:03

nono


One solution would be to create a "SOCKS5 adapter" that would accepts regular SOCKS5 connections on one side, then forwards them onto an authenticated SOCKS5 proxy on the other.

You could run the "adapter" locally and configure it with the allowed incoming connection (localhost) and outgoing authenticated SOCKS5 proxy and username/password.

Because the first proxy is running locally, you would not incur much of a performance hit. This would work in any agent which supports any proxy format you want to expose to your browser.

Otherwise, this sounds more like a superuser question.

like image 23
Andy Avatar answered Mar 02 '23 16:03

Andy