搜索资源列表
HookAPI 1.7 Windows API钩子程序
- 通过修改API函数开始前5字节,跳转到自定义API的方式,截获函数调用. 支持Win95,Win32等系统,在WinXp sp2或以后系统中使用,会出现蓝屏,原因是程序修改了代码的页面权限为PAGE_READWRITE,导至WinXP Sp2的系统保护功能出现蓝屏,只需将源代码里的所有PAGE_READWRITE修改为 PAGE_READWRITE_EXECUTE即可正常使用.
apihooktest2
- 一、前言 前一段时间发表了一篇文章 “Hook API 工具”,没有附带主程序的源代码,这几天翻出来代码加了些注释,现在补上。不过大家还是最好看看牛的书,书上讲解很详细。 二、对代码的简单说明 总共3个工程,1个主程序,1个HookDll, 1个例子Dll。主程序负责启动进程,并将 HookDll 注入。还有一些额外的功能,比如显示 Log, 例子Dll的信息,导出函数等,HookDll 在 DllMain 启动的时候根据配置钩住指定的 API 函数 三、这
hook-api
- 利用全局钩子,将操作系统API地址修改为自定义的函数,使用完成后,再将地址修改为之前的操作系统API地址-Use global hook, the operating system API address changes for custom functions, using complete, then the address changes for the operating system API address before
ApiHook
- API Hook示例代码:用来将自定义的 Dll 注入进程空间,并钩住指定 API 函数,关于注入和钩 API 的代码,这里主要介绍如何使用这个小工具方便实现截获 API 的功能-API Hook Sample Codes
HookFunc
- 载获API函数,获取字符串这个例子就是通过Hook几个最基本的字符串输出函数,以获得系统所有文字的例子! 获取到字符串后,将以WM_COPYDATA消息发送到接收窗口,所以接收窗口需自定义一下接收函数。 -Previously approved API function to get the string in this example is the string through the Hook a few basic output function to obtain all
APIHOOK1
- API钩子,通过修改IAT表实现,截获MessageBoxW,MessageBoxA等API;可自由修改自定义API实现函数-API hooks, by modifying the IAT table to achieve, intercepted MessageBoxW, MessageBoxA other API be free to modify a custom API to achieve the function
HookAPI
- 实现windows下的hook钩子函数,可以修改库函数中接口自定义。-Achieve hook hook function under windows, you can modify a custom interface library functions.