资源列表
KeyHook
- 键盘钩子很好的,大家可以参考以下,很有用的-good
hook
- 实现了一个c++的hook小程序,非常好用,测试通过-Implements a c++ to hook a small program, very easy to use, test
keybord
- vc++的所有按键的windows消息截取,并测试所有按键的功能-Key Test
iat_hook
- Sample for how to hook IAT table
hookyou
- VC钩子功能的简单事例,有空可以看看,anybody-hook
HookLock
- C#锁屏程序,对系统的功能热键进行了屏敝,ctrl+alt+del没有屏敝,只是对任务管理器做了设置 -C# lock-screen procedures, function of the system conducted a screen worn hotkey, ctrl+ alt+ del does not screen worn, just did a set up Task Manager
HookSys_code
- 披露API Hook的相关技术。讲述如何监控API函数、查看操作系统内部以及如何扩充原函数的功能-Intercepting Win32 API calls has always been a challenging subject among most of the Windows developers and I have to admit, it s been one of my favorite topics. The term Hooking represents a fundament
winspy_package
- 提供三种方法实现DLL注入。 包括:Windows Hooks、The CreateRemoteThread & LoadLibrary Technique、 The CreateRemoteThread & WriteProcessMemory Technique-Provides three ways to achieve DLL injection. Including: Windows Hooks, The CreateRemoteThread & LoadLibrary T
FITER
- 基于Filter—Hook Drive设计个人防火墙-Based on Filter-Hook Drive Design of Personal Firewall
HookProcessMemory
- hook read/write process memory 本程序可以监视一些进程外的内存操作行为。可以用来分析某些内存修改器,内存补丁的动作。 附上VC6源代码,hookapi核心部分用的使用detours库,不懂可以baidu一下 作者:毕飞-hook read/write process memory of the program can monitor the operation of some process of memory behavior. Can b
YAPMv2.3.0
- 一个功能强大的进程监视软件。这是与著名的Process Monitor并行的另一个进程监视软件。它可以实现远程监控。-et Another (remote) Process Monitor (YAPM) is a powerful application that allows to view and manage your running tasks, processes, threads, modules...etc. and your services on a local or on a
HookMouse
- 一个简单的鼠标钩子程序 Windows系统是建立在事件驱动的机制上的,说穿了就是整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口,用它可以截获并处理送给其他应用程序的消息,来完成普通应用程序难以实现的功能。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,外壳钩子可以截取、启动和关闭应用程序的消息等。本文在VC6编程环境下实现了一个简单的鼠标钩子程序,并对Win32全局钩子的运行机制、Win32 DLL的特点、VC6环境下的MF