挂钩创建文件W
我想知道进程打开/访问了哪些文件。我可以知道该怎么做吗?我尝试使用 Deviare(一个免费的 hooking api)来帮助我,但无法从他们的 AIP 库或论坛中找到任何有用的信息。
我只知道我必须连接到 kernel32.dll 和 createFileW,但我不知道如何继续。
请帮助我。提前致谢。
I want to know what are the files opened/access by a process. May i know how to do that? I tried to use Deviare, a free hooking api to help me, but was unable to find any useful information from their AIP lib or forum.
I only know i have to hook on to kernel32.dll and createFileW and i am not sure of how to continue.
Pls help me. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的。您必须挂钩 kernel32.dll 中的 CreateFileA/W 函数来监视访问。您想在您自己的进程中还是在其他进程中挂接这些 API?
如果你想在你自己的进程中挂钩函数,你可以使用
它。这些函数将函数 src (fe MessageBoxA()) 绕道至函数 dst。作为 len,您可以使用 5。它返回一个指向原始函数的函数指针。
一个调用示例:
这是一个用户模式挂钩。如果你想在系统范围内执行此操作,我会使用设备驱动程序。这是关于此的教程。 http://www.codeproject.com/KB/system/driverdev.aspx
如果您使用 VC++ 以多字节模式进行编译;)。
如果你想挂钩其他进程,只需谷歌 DLL-Injection ;)。
It's right. You have to hook the function CreateFileA/W in kernel32.dll to monitor the acces. Do you want to hook these APIs in your own process or in an other process?
If you want to hook functions in your own process you can use
for it. These function detours the function src (f.e. MessageBoxA()) to function dst. As len you can use 5. It returns a function pointer to the original function.
An example call:
That's an usermode hook. If you want to do this systemwide I would use a device driver. Here is a tutorial about this. http://www.codeproject.com/KB/system/driverdev.aspx
And if you are using VC++ compile in multibyte mode ;).
If you want to hook in an other process just google DLL-Injection ;).