以编程方式阻止网站

发布于 2024-09-06 16:15:55 字数 114 浏览 2 评论 0原文

该程序有一个黑名单,它包含一个网站列表。当用户在 IE(Firefox、Opera、Chrome)中打开该网站时,他应该会收到错误消息。 (例如 404)。 我该怎么办?建议不要写入文件 HOSTS。 语言 C#。

The program has a black list, it contains a list of sites. When the user opens the site in IE (Firefox, Opera, Chrome) he should get an error. (For example 404).
How can I do? It is advisable not writing to the file HOSTS.
Language C#.

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

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

发布评论

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

评论(2

夕嗳→ 2024-09-13 16:15:55

您所描述的是代理服务器:

http://www.squid-cache.org/

What you are describing is a Proxy server:

http://www.squid-cache.org/

一梦等七年七年为一梦 2024-09-13 16:15:55

您尝试执行的操作背后的概念是监视端口 80 传出流量并阻止发送到黑名单中包含的站点/ip 的任何请求。

对于您来说,在这里发布整个代码有点复杂。

无论如何,这种操作最适合网络防火墙过滤器,而不是在客户端上运行的自定义 C# 应用程序。

The concept behind what you're trying to do is monitoring port 80 outgoing traffic and block any requests addressed to sites/ips contained in the black list.

It's kind of complex posting for you the whole code here.

Regardless, this kind of operation is best suited to a network firewall filter than to a custom C# app that runs on the client.

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