c - What is the easiest way of intercepting library calls in Windows? -
I want to monitor / filter Internet traffic. I had planned to do this by blocking calls to send and receive in the WinSock API. Patching / disassembling is very difficult and takes time. The DLL method is also very time consuming because I want to patch and there are 2 calls and I have to reproduce the entire DLL. Is there an easy way to produce redirects DLL? Or maybe an easy way to stop calls?
Imbalances and patching are not easy, this is why DLL injection & amp; The hook that can be used for interception can be used to get you started here:
Comments
Post a Comment