NDIS 或 TDI,用于将数据包重定向到本地代理

发布于 2024-08-31 06:25:50 字数 297 浏览 6 评论 0原文

我需要开发一个透明过滤器来将传出的 HTTP 数据包重定向到本地代理,以进行透明内容过滤。

TDI 或 NDIS IM 哪种技术最好?

我的主要限制是避免与防病毒软件发生冲突,防病毒软件也会执行某种数据包重定向来检查 HTTP 内容(我不知道防病毒程序是否使用 TDI、NDIS IM,或两者都使用)。

实际上,我不是自己编写驱动程序,而是在考虑两个用于数据包过滤/修改的商业 SDK:一个使用 TDI 驱动程序,另一个使用 NDIS IM 驱动程序,所以这就是我的问题的根源(我只知道NDIS IM,在查看两个 SDK 之前)。

I need to develop a transparent filter to redirect outgoing HTTP packets to a local proxy, to do transparent content filtering.

Which is the best technology to do it, TDI or NDIS IM?

My main constraint is to avoid conflicts with antivirus software, which also do some kind of packet redirection to inspect HTTP content (I don't know whether antivirus programs use TDI, NDIS IM, or both).

Rather than writing the driver myself, actually, I'm also considering two commercial SDKs for packet filtering/modification: one uses a TDI driver while the other uses a NDIS IM driver, so that's the origin of my question (I was only aware of NDIS IM, before looking at the two SDKs).

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

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

发布评论

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

评论(2

爱她像谁 2024-09-07 06:25:50

NDIS IM 使您可以访问数据包。

如果您要重定向到代理,您可能在连接 (TCP) 级别执行此操作,在这种情况下,这将在 NDIS IM 级别进行大量工作,因为您需要实现完整的 TCP 堆栈来处理重试、排序等。

所以我会更多地研究 TDI 或 WFP(取决于目标操作系统)。

我所知道的大多数 AV 也使用 LSP,这是一个 Winsock 过滤层。因此,TDI 将远低于此值,并且还捕获不使用 Windows 套接字进行 TCP/IP 的应用程序(例如资源管理器、SMB 客户端等)。

NDIS IM gives you access to packets.

If you're redirecting to a proxy you probably are doing this at the connection (TCP) level, in which case this would be a lot of work at NDIS IM level, since you'd need to implement a full TCP stack to deal with retries, sequencing etc.

So I would look more into TDI or WFP (depending on target OS).

Most AV I know of use LSP for this as well, which is a winsock filtering layer. So TDI would be well below this, and also capture apps that don't use windows sockets for TCP/IP (such as explorer, SMB clients etc).

满天都是小星星 2024-09-07 06:25:50

我发现这个软件可以做到这一点。他的软件使用 NDIS IM

http://www.softperfect.com/products/bandwidth/

I found this software to do this. His software usae NDIS IM

http://www.softperfect.com/products/bandwidth/

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