Enable SOCKS 4a/5 in Internet Explorer

六眼飞鱼酱① 提交于 2019-12-06 13:47:43

No, Internet Explorer does not support SOCKSv4a: http://blogs.msdn.com/b/ieinternals/archive/2010/10/08/socks-proxy-support-in-internet-explorer-and-wininet.aspx

If you'd like, you can use Fiddler to bridge between a "classic CERN proxy" and a SOCKSv4a proxy. Use the following rule to point incoming requests to the TOR system.

In Fiddler, click Rules > Customize Rules. Add the following inside the Handlers class:

public static RulesOption("Use TOR")
var m_EnableTOR: boolean = false;   

Then, inside OnBeforeRequest, add the following block:

    if (m_EnableTOR)
    {
        oSession["X-OverrideGateway"] = "socks=127.0.0.1:9150";
        oSession["ui-backcolor"] = "#EFEF9F";
    }

After you do this, simply click the Enable TOR option on Fiddler's Rules menu, and all inbound requests (from IE, etc) will be directed to the TOR instance running on port 9150.

Internet Explorer does support SOCKS proxies.

Tools > Internet Options > Connections > LAN Settings > Proxy Server > Advanced

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!