Hot Search : Source embeded web remote control p2p game More...
Location : Home Search - hook
Search - hook - List
DL : 0
delphi编程有关钩子方面的。-delphi programming on the hook.
Update : 2024-05-05 Size : 16384 Publisher : 王朝

工作需要,想控制进程的创建,于是HOOK了ZwCreateProcess,后来发现xp和2003中创建进程的都用NtCreateProcessEx-work needs to control the process of creation, then the ZwCreateProcess HOOK, later found xp 2003 and the process of creating both NtCreateProcessEx
Update : 2024-05-05 Size : 9216 Publisher :

HOOK API Game and DirectX
Update : 2024-05-05 Size : 92160 Publisher : lee

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
Update : 2024-05-05 Size : 198656 Publisher : 黄春标

windows ndis钩子程序,用于防火墙、vpn、nat、网络驱动等软件的开发。-hook procedures for firewall, VPN, nat, network drives, such as software development.
Update : 2024-05-05 Size : 18432 Publisher :

这份资料是关于Windows系统的勾子编程的详细介绍,希望大家喜欢。-this information on the Windows system is a hook detailed description of the program, hope you like them.
Update : 2024-05-05 Size : 36864 Publisher : 王浩

很简单的钩子程序,希望对初学者有所帮助, 作为软件开发人员,希望大家重视技术的学习,而不要做违背道德的事,钩子就是试金石-very simple hook program, and I hope to help beginners, as software developers, we hope that the importance of learning technology, and not be contrary to morality, the hook is the touchstone
Update : 2024-05-05 Size : 20480 Publisher :

这是一个Hook 系统服务隐藏端口源码及示例,希望对大家有所帮助-This is a hidden system services Hook port and source examples, we hope to help
Update : 2024-05-05 Size : 34816 Publisher : 赵郁馨

基于ndis-hook的例子,可以了解hook编程的基本思路和编程方法-based on NDIS-hook example, the hook can be programmed to understand the basic ideas and Programming
Update : 2024-05-05 Size : 5120 Publisher : 李鸿中

本程序是windows Hook程序,有写不是很全面,请大家补充,-windows Hook procedures, it was not very comprehensive, please add, thank you
Update : 2024-05-05 Size : 158720 Publisher : dfsd

DL : 1
用VC++ Hook技术实现屏幕取词.它是利用调试技术编写成的API钩子。比起16位下传统的入口代码改写技术,它是没有多线程问题的,而且能够拦截LoadLibrary/GetProcAddress完成的API显式调用。-VC Hook Capture Characters from Screen Technology. It is testing the use of technology into the preparation of the API hook. Compared to the traditional 16 under the entrance to rewrite code technology, it is not multithreaded problems. and can intercept LoadLibrary/GetProcAddress completed API Explicit call.
Update : 2024-05-05 Size : 371712 Publisher : tanglongsh

DL : 0
键盘鼠标钩子源代码,DLL,可以任何程序挂上就可以用,可用与记录键盘信息-keyboard and mouse hook source code, DLL, can be displayed on any procedure can be used, the available information and records keyboard
Update : 2024-05-05 Size : 6144 Publisher : nimingzi

DL : 0
键盘钩子程序,截获键盘操作,是一般黑客程序不可少的函数-keyboard hook procedures intercepted keyboard, it is the common hacker program essential for the function
Update : 2024-05-05 Size : 10240 Publisher : 刘凯

DL : 0
以前学习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.
Update : 2024-05-05 Size : 95232 Publisher : wangyan

DL : 0
设置Hook鼠标和键盘钩子,实现对窗口消息的截获,是通过调用dll实现的-Hook set up the mouse and keyboard hooks realize intercepted messages to the window is realized by calling the dll
Update : 2024-05-05 Size : 1814528 Publisher : 田鼠爱布它

DL : 1
在VC++6.0下编写的一个简单钩子程序,可以锁定键盘鼠标,我采用了最简单的编写,希望给初学者很好的帮助,F2+F9 可以解除锁定-In VC++ 6.0 prepared with a simple hook procedure, you can lock keyboard and mouse, I used the most simple to prepare, good for beginners who want to give help, F2+ F9 can unlock
Update : 2024-05-05 Size : 39936 Publisher : wang ping

DL : 0
HOOK API单元文件源码。-HOOK API module source file.
Update : 2024-05-05 Size : 2048 Publisher :

DL : 0
在vb下有关于hook的全面介绍,对学习很有帮助-In the next vb has a comprehensive introduction on the hook for learning useful
Update : 2024-05-05 Size : 6144 Publisher : akdfja

DL : 0
钩子(hook)是Windows消息处理机制的一部分,用户应用程序设置钩子后就可截获所有Windows系统消息。钩子安装成功后就可通过钩子的过程处理函数处理所截获的消息。通常将钩子的安装及处理函数放在动态链接库中,供系统中每个进程调用。钩子安装后会对系统产生一定的影响。因此在使用完钩子后应及时将其释放掉。 动态链接库编程编译、链接生成的*.dll和*.lib文件可供其他调用DLL的应用程序使用。 -Hook (hook) is a Windows message processing part of the mechanism, the user application settings can be intercepted after the hook all Windows system message. After the success of hook can be installed through the process of hook handler to deal with the intercepted message. Usually hook the installation and handling functions on the dynamic link library for the system call for each process. Hook after the installation of the system have a certain impact. Therefore, after you are finished using the hook should be released promptly lost. Dynamic Link Library programming compiler, link-generated*. dll and*. lib files for other applications that call the DLL to use.
Update : 2024-05-05 Size : 796672 Publisher : 程娃

DL : 0
注入DLL到进程,hook游戏成功的例子-Injected DLL into the process, hook examples of successful games
Update : 2024-05-05 Size : 344064 Publisher : 是啊
« 1 23 4 5 6 7 8 9 10 ... 50 »
DSSZ is the largest source code store in internet!
Contact us :
1999-2046 DSSZ All Rights Reserved.