登录
首页 » Hook钩子技术 » 代码使用Visual C++ 6.0为开发工具,为了使程序小巧灵活,本人使用了WTL而不是MFC实现软件的界面,所以编译源代码需要安装WTL库。WTL库是微软发...

代码使用Visual C++ 6.0为开发工具,为了使程序小巧灵活,本人使用了WTL而不是MFC实现软件的界面,所以编译源代码需要安装WTL库。WTL库是微软发...

于 2022-03-05 发布 文件大小:71.34 kB
0 212
下载积分: 2 下载次数: 1

代码说明:

代码使用Visual C++ 6.0为开发工具,为了使程序小巧灵活,本人使用了WTL而不是MFC实现软件的界面,所以编译源代码需要安装WTL库。WTL库是微软发布的基于ATL构建的工具库,随源代码一起发布,可以从微软网站下载,也可以从http://www,winmsg.com/cn/orbit.htm下载。本程序使用WTL 7.1,应该也可用WTL 7.5。编译WTL程序需要安装微软的Platform SDK,最好是2002年以后的版本,如果使用Visual Studio 2002或以后的版本可不用安装Platform SDK,因为它们已经包含了Platform SDK。 在AntiHook workspace下公有四个project,AntiHook是钩子检测程序,它编译生成AntiHook.exe,运行AntiHook.exe需要和AntiHook.ini在同一个目录下,AntiHook.ini是配置文件,可以在AntiHook目录下找到。sysHook是一个全局钩子程序的例子,编译候生成sysHook.dll,用于AntiHook测试之用。HookHelper是GUI界面的sysHook.dll加载程序,编译生成HookHelper.exe,运行HookHelper.exe就可以在系统中安装sysHook.dll钩子。Helper是Console界面的sysHook.dll加载程序,编译生成Helper.exe,用于调试sysHook.dll钩子程序。-code using Visual C 6.0 for the development of tools, in order to enable small flexible procedures, I used WTL instead of the MFC software interface, the need to compile the source code for the installation of WTL. WTL repository is based on Microsoft ATL Construction of the library of tools, together with the source code release can be downloaded from

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Hook technology before learning to write small program, using the mouse hook ope...
    以前学习hook技术写的小程序,采用hook鼠标操作,当鼠标左右键同时按下的时候自动将当前活动的窗口隐藏起来,再次按下鼠标的左右键的时候恢复隐藏的窗口。-Hook technology before learning to write small program, using the mouse hook operation, when the mouse around at the same time press the button when the current activities will automatically hide the window again by pressing the left and right mouse button when the restoration of a hidden window.
    2022-02-11 12:33:01下载
    积分:1
  • const WM_UNSUBCLASS = WM_USER 2001// Uninstall subclass of news WM_SENDDATA = WM...
    const WM_UNSUBCLASS = WM_USER + 2001 //卸载子类化消息 WM_SENDDATA = WM_USER + 2003 //收到要发送新数据包的消息 type PMyDLLVar = ^TMyDLLVar //用来共享的内存数据结构 TMyDLLVar = record SubClass: Boolean //是否已经子类化 HookWindow, SpyWindow: LongWORD //要安装HOOK的窗口及用于接收消息的窗口 hHook: LongWORD //HOOK句柄 OldWndProc: pointer //旧的窗口过程 end-const WM_UNSUBCLASS = WM_USER 2001// Uninstall subclass of news WM_SENDDATA = WM_USER 2003// received new data to be sent information packets type PMyDLLVar = ^ TMyDLLVar// used to share memory data structure TMyDLLVar = record SubClass : Boolean// if the child class of HookWindow, SpyWindow : LongWORD// HOOK to install a window for receiving news and the window hHook : LongWORD// handle OldWndProc HOOK : pointer// old process end window
    2022-01-22 14:30:21下载
    积分:1
  • E语言反
    E语言反钩子源码-E language anti-hook source
    2022-03-14 09:01:13下载
    积分:1
  • Windows keyboard prohibited procedures, to generate dll file, through a simple f...
    禁止Windows的键盘程序,生成dll文件,通过简单函数调用可以禁止或者允许特殊键盘消息的屏蔽-Windows keyboard prohibited procedures, to generate dll file, through a simple function call can prohibit or permit the special keyboard news shielding
    2022-08-04 04:36:57下载
    积分:1
  • socket api hook
    vc++ 实现的 socket api hook,可以做数据抓包分析,练习api hook技术,分为两个工程,1个为dll 提供hook函数,一个为调用或者说bootload。代码齐全带编译好的bin文件。
    2023-08-20 18:05:04下载
    积分:1
  • 一个激动人心的自制窗口标题(caption)的程序源码。当然使用了hook...
    一个激动人心的自制窗口标题(caption)的程序源码。当然使用了hook- An exciting self-made window title (caption) procedure source code. Certainly has used hook
    2022-08-08 05:39:19下载
    积分:1
  • Capture Characters from Screen, from the mouse location to obtain text. Kingsoft...
    屏幕取词,由鼠标位置取得文字。类似金山词霸的取词功能-Capture Characters from Screen, from the mouse location to obtain text. Kingsoft to take a similar word function
    2022-08-22 17:23:32下载
    积分:1
  • Hook到记事本的MessageBoxW函数 打开旧的记事本新输入几个字符,按新建就会看到HOOK的效果...
    Hook到记事本的MessageBoxW函数 打开旧的记事本新输入几个字符,按新建就会看到HOOK的效果-Hook into Notepad MessageBoxW function of the old Notepad to open the importation of several new characters, according to a new you will see the effect HOOK
    2022-08-11 19:59:35下载
    积分:1
  • Delphi下真正隐藏进程的代码
    这是一个在Delphi下编写的隐藏系统进程的代码,隐藏之后,在任务管理器里面看不到这个进程了。
    2022-04-24 23:46:08下载
    积分:1
  • 安装一个鼠标 40K
    安装一个鼠标钩子 40K- Installs mouse clasp 40K
    2022-08-16 05:18:33下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载