I am going to build a sort of personal firewall for Windows. I've found some articles on this subject on the Net, including some questions here on StackOverflow. But all they mean to control protocols, addresses and ports. It is as well important for me to control on per-application basis. Any suggestions on where to look?

link|improve this question

70% accept rate
2  
Um.. you should already know this if you are writing a host based firewall... there are much greater problems you will face. – Longpoke May 16 '10 at 0:26
+1, one possibility - "netstat -nop" shows which processes open which sockets, so get the source/target socket from the TCP header and map it to a process. – mdma May 16 '10 at 0:35
yeah you could just use netfilter or even iptables on Linux, for Windows I have no clue, I wouldn't be surprised if you have to reverse engineer the Windows kernel's network subsystem and hook it :/ – Longpoke May 16 '10 at 1:14
1  
netfilter and iptables are firewalls, not APIs. Nor do they, AFAIK, do application firewalling - operating only at the network stack. – Mark Brackett May 16 '10 at 1:42
feedback

1 Answer

up vote 3 down vote accepted

GetExtendedTcpTable with a TCP_TABLE_CLASS parameter of TCP_TABLE_OWNER_MODULE_CONNECTIONS will give you all the connected endpoints and the owning process id.

You can pass the table row to GetOwnerModuleFromTcpEntry to get the module name and path.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.