Question

Is it possible to intercept an outgoing TCP connection to a given host or IP in Windows and block that connection on the TCP level, i.e. at the connect(...) layer? Or prevent connection to a specific IP in the first place?

Or do I need to write a packet filter to intercept traffic to a certain address?

Was it helpful?

Solution

It's probably best to simply use the system's firewall API. On Windows: http://msdn.microsoft.com/en-us/library/aa366449(v=VS.85).aspx

Otherwise you are going to be writing drivers and such... complete hassle considering the functionality is built into the OS these days.

OTHER TIPS

On linux? Configure iptables to drop the connection, perhaps.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top