白名单以阻止使用 IIS 的不良机器人

发布于 2024-12-02 04:02:52 字数 684 浏览 1 评论 0原文

基本上我想在 IIS 中执行此操作:

在 Apache 中,您只需将 .htaccess 文件更改为 OPT-IN 而不是 OPT-OUT,即可阻止许多机器人,基本上是白名单而不是黑名单。默认情况下,您允许 Google、Yahoo、MSN 等以及 IE、Opera、Firefox、Netscape 进入并退回其他所有内容。这里的美妙之处在于,您不必再继续寻找机器人,因为任何标识自己为机器人的东西都会被退回。

我如何在 IIS 中实现这一点?你能给我举个例子吗?谢谢!

参考文献: http://www .spanishseo.org/how-to-identify-user-agents-and-ip-addresses-for-bot-blocking

http://incredibill.blogspot.com/2011/05/whitelisting -not-blacklisting-to-stop.html

Basically I want to do this in IIS:

In Apache you can block many bots by simply changing your .htaccess files to OPT-IN instead of OPT-OUT, basically whitelisting instead of blacklisting. You let in Google, Yahoo, MSN, etc. and IE, Opera, Firefox, Netscape and bounce EVERYTHING else by default. The beauty here is you don't have to keep looking for bots anymore as anything that identifies itself as a bot will be bounced.

How do I achieve that in IIS? Can you please point me to an example? Thanks!

references: http://www.spanishseo.org/how-to-identify-user-agents-and-ip-addresses-for-bot-blocking

http://incredibill.blogspot.com/2011/05/whitelisting-not-blacklisting-to-stop.html

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美煞众生 2024-12-09 04:02:52

IIS 中没有执行此操作的本机方法。如果您使用的是 asp.net,则很容易创建一个 httpmodule 来执行此过滤,但除非我们谈论的是 IIS7,否则只会过滤 .net 请求。

除此之外,您还会看到一个 IIS 过滤器,它是用 C++ 或 Delphi 或可以编译 dll 之类的东西编写的。它们也不容易写。

我写了类似的东西,使用 Project Honeypot (http://projecthoneypot.org/) 来阻止垃圾邮件 IP 地址。您可以在此处获取:http://code.google.com/p/blacklistprotector/

There's no native way of doing this in IIS. If you're using asp.net it's easy enough to create an httpmodule to do this filtering, although unless we're talking IIS7 then only .net requests will be filtered.

Outside of that, you're looking at an IIS Filter, written in something like C++ or Delphi or something that can compile a dll. They're not easy to write either.

I wrote something similar that uses Project Honeypot (http://projecthoneypot.org/) to block spammy IP addresses. You can get it here: http://code.google.com/p/blacklistprotector/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文