DeleteFile Hook
-
Hello All, I need to intercept everytime user use delete,shift-delete or use DEL command from command promt, I need to know what API get called when we use DELETE, SHIFT+DELETE and DEL command, I'll be very much obliged if anyone can redirect me to how to intercept-Hook those calls.. Looking forward to see members reply, and i'm using VC 6.0 and WIN DDK 7.1. Thanks all
-
Hello All, I need to intercept everytime user use delete,shift-delete or use DEL command from command promt, I need to know what API get called when we use DELETE, SHIFT+DELETE and DEL command, I'll be very much obliged if anyone can redirect me to how to intercept-Hook those calls.. Looking forward to see members reply, and i'm using VC 6.0 and WIN DDK 7.1. Thanks all
What exactly are you working on that needs to intercept the function calls and that needs the DDK and are using VC 6.0? But, this is simple to implement if you know where to look. There are quite a few articles on how to intercept/hook a function call, especially a windows one.
-
What exactly are you working on that needs to intercept the function calls and that needs the DDK and are using VC 6.0? But, this is simple to implement if you know where to look. There are quite a few articles on how to intercept/hook a function call, especially a windows one.
I need to intercept if anyone delete the file and verify if it's authorized user to perform the action..
elchupathingy wrote:
and that needs the DDK and are using VC 6.0?
What are other way to perform this apart of making driver?
elchupathingy wrote:
There are quite a few articles on how to intercept/hook a function call, especially a windows one.
That's what i need, I couldn't find or i would say i couldn't find right articles, Can you post some link? Thanks for your reply..
-
I need to intercept if anyone delete the file and verify if it's authorized user to perform the action..
elchupathingy wrote:
and that needs the DDK and are using VC 6.0?
What are other way to perform this apart of making driver?
elchupathingy wrote:
There are quite a few articles on how to intercept/hook a function call, especially a windows one.
That's what i need, I couldn't find or i would say i couldn't find right articles, Can you post some link? Thanks for your reply..
-
Didn't get the point..
-
Didn't get the point..
Oh wow...the links didn't go through, sorry about that. http://www.codeproject.com/KB/system/hooksys.aspx http://www.codeproject.com/KB/threads/completeinject.aspx The two articles here. Also you only need to use something like Windows Detours, I personally like Detours 1.5, but the newer one can do more things, but 1.5 is easier to use personally.