Packet filtering in Windows (XP, 7 etc)

房东的猫 提交于 2019-12-05 17:15:30

Here is some to filter packet in windows:

WinDivert Free open source project work on Windows 7, 2008 or upper. network layer.

WinpkFilter 3.0 Commercial, Windows XP and upper. datalink layer

pcausa, Commercial. datalink layer

Windows Filtering Platform Packet Modification Sample A sample to create callout driver that WinDivert use, you should now to implement kernel driver. network layer.

you can use SmartSniff in windows.

Starting from version 1.10, you can filter unwanted TCP/IP activity during the capture process (Capture Filter), or when displaying the captured TCP/IP data (Display Filter)

You want application level filtering then, (just changing the payload). If you want to be able to drop, I know you can hook into Winsock, which will allow you to capture packets as they go out and set up a filter there. Windows seven also added to their firewall, so you could use that API to grab outbound packets; I'm not sure if it will allow you to specifically alter the payload data, though.

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