在Internet Explorer中启用SOCKS 4a/5 [英] Enable SOCKS 4a/5 in Internet Explorer

查看:116
本文介绍了在Internet Explorer中启用SOCKS 4a/5的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

出于匿名目的,我们希望使用更改的代理服务器.在搜索时,我们偶然发现了TOR项目,该项目非常适合正常浏览.

For anonymity purposes we would like to use a changing proxy server. While searching for that we stumbled over the TOR-project which works perfectly for normal browsing.

但是,我们还需要软件的代理.遗憾的是,该第三方软件使用Internet-Explorer作为基础,因此我们无法使用推荐的浏览器.

However we also need the proxy for a software. Sadly this 3rd-party software uses the internet-explorer as basis so we can't use the recommended browser.

更糟糕的是,IE在其代理设置中不支持SOCKS4a或SOCKS5.或者我似乎找不到它们.

Even worse seems to be that IE doesn't support SOCKS4a or SOCKS5 in its proxy settings. Or I can't seem to find them.

是否可以在IE中启用SOCKS4a或SOCKS5?如果不是,最好的选择是什么?请记住,我们希望在可能的情况下每天更改IP.

Is there any way to enable SOCKS4a or SOCKS5 in IE? If not what would be the best alternative? Keep in mind that we want that the IP is changed on a daily basis if possible.

感谢您的努力和事先的帮助!

Thank you for your efforts and help in advance!

推荐答案

否,Internet Explorer不支持SOCKSv4a:

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

如果愿意,可以使用Fiddler在经典CERN代理"和SOCKSv4a代理之间进行桥接.使用以下规则将传入请求指向TOR系统.

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.

在Fiddler中,单击规则">自定义规则".在 Handlers 类中添加以下内容:

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

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

然后在OnBeforeRequest内添加以下块:

Then, inside OnBeforeRequest, add the following block:

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

执行此操作后,只需单击Fiddler的Rules菜单上的 Enable TOR 选项,所有入站请求(来自IE等)将定向到在端口9150上运行的TOR实例.

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中启用SOCKS 4a/5的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆