搜索资源列表
利用鼠标键盘钩子截获密码(www_dvpx_com)
- 钩子。看看这个漏洞: http://zdnet.com.com/2100-1105-964057.html win2000和xp在执行搜索的时候, 首先查找根目录而开始菜单的运行窗口里执行命令, 也是首先在系统盘的根目录里进行查找. 这个漏洞其实是已经是公开的秘密了. 既然现在作为漏洞公布出来, 我也就把网上的PasswordReminder.cpp拿来改了改加了一个加超级管理员用户和执行cmd.exe的功能. 使用方法: 把程序解压, 把压缩包里的文件 CMD.EXE (该文件具有隐藏和只读属
vb钩子实例
- 各种钩子全局,窗口下
隐藏所有可视窗口 hide window
- 一款可以瞬间显示/隐藏所有可视窗口程序的源码,采用了日志钩子,可以不使用任何DLL文件,只有一个EXE文件即可,其中还有对系统状态栏图标的存取操作等
VFP9's Tool信息提示勾子
- VFP9's ToolTipEx 1.2 信息提示勾子 如果你认为下图中信息提示窗口是在表单上放一个类或控件,然后再为表单对象额外写上一行它的信息提示,那么恭喜你,你猜错了。 ToolTipEx.1.2 完全是一个勾子类型的信息提示类,你完全无须往你己有的表单上增加控件或者类或者增加一行代码,也完全不需要修改你项目中任何表单的任何一个地方。只需要在您主程序中执行一句 BindVfp 即可,或在你希望启用信息提示的时候启用 BindVfp,你原来表单上所有控件的 ToolTipText
Hook
- 窗口消息钩子,此程序用于侦听应用程序的窗口消息-Window message hook, this procedure for the listening application window message
SendKeys
- VS2008 C#. 在.net环境下,利用系统钩子,截获并发送按键消息。 本程序的目的是以一定的时间间隔不断对某一窗口程序发送按键信息,以实现自动阅读的效果。 其中Keyboard.cs是一个可重用性很高的类,值得参考。-VS2008 C#. Demonstrate using hooks to get and send keyboard messages.
MouseMeter
- 这是个基于VB版的鼠标钩子程序,程序适时跟踪计算鼠标坐标、移动距离、像素转换等,还可以设置窗口永远在最上层,不遮挡!-This is based on the VB version of the mouse hook procedure, timely follow-up procedures for calculating the coordinates of the mouse, move distance, pixel conversion, you can set the window
MyMouseHook
- 这是个键盘钩子演示的动态库,实现对ALT+F4的控制。设置被控制的窗口,然后这个窗口的ALT+F4将被接管。-This is a keyboard hook DLL demonstrated to achieve control of ALT F4. Settings are controlled by the window, and then the window ALT F4 will be taken over.
VoiceCmdDemo
- 自己写的代码 SrHook:实现钩子功能的dll SpyWin:仿照Spy,获取窗口信息,截获消息,模拟菜单命令和按键指令-Write their own code SrHook: achieve hook function dll SpyWin: modeled on Spy, access to window information, intercepted messages, analog menu commands and command keys
GETcolor
- C++编写的屏幕拾色器,拖动鼠标就可以获取屏幕任意一点的的颜色,然后给出16进制和RGB颜色值,并将值存入剪贴板;同时在拖动取色过程中适时显示鼠标位置座标、窗口句柄、窗口类名以及窗口标题,因此,这个程序也可以说成是一个鼠标钩子程序,对研究C++还是有帮助的。-C++ Prepared Found color screen, and drag the mouse on the screen can be accessed at any point of the color, and then gi
MouseHook
- 简单的鼠标钩子例子,可显示鼠标所在窗口的标题!模拟金山词霸取词功能,包括一个系统钩子DLL和调用程序!-A simple mouse hook example, where the window can display the title of the mouse! Simulation PowerWord check word features, including a system hook DLL and call the procedure!
SpyNet
- 利用全局钩子和代码注入实现键盘纪录,可以设置只纪录在"Iexplore.exe", "Firefox.exe","Opera.exe", "msdev.exe"等进程对应窗口的输入。-Use of global hooks and code injection to achieve a record keyboard, you can set the record only in Iexplore.exe , F
HookSpy_src
- 使用钩子获取窗口或控件的详细信息。句柄,文本(或编辑框的密码)所属线程等。-Window or use the hook to obtain detailed information on controls. Handle, text (or edit the password box), such as their threads.
d
- 利用窗口过程钩子截获QQ账号 利用窗口过程钩子截获QQ账号-Use of the process window hook intercepted QQ account the use of the process window hook intercepted QQ account
Hook
- 钩子(Hook),是Windows消息处理机制的一个平台,应用程序可以在上面设置子程以监视指定窗口的某种消息,而且所监视的窗口可以是其他进程所创建的。-VC++ hook programing,and a demo.
ChangeSkin
- 使用钩子实现的自绘CButton类,网上的同类代码虽然很多,但是使用钩子来实现的很少。钩子过程可以使导出的CButton类脱离对话框窗口-Since the implementation of the use of hook-type CButton painted, on-line although a lot of similar code, but the use of hooks to achieve very little. Hook process can type CButton
Hook
- 钩子是WINDOWS中消息处理机制的一个要点,通过安装各种钩子,应用程序能够设置相应的子例程来监视系统里的消息传递以及在这些消息到达目标窗口程序之前处理它们。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,鼠标钩子可以截获鼠标消息,外壳钩子可以截获启动和关闭应用程序的消息,日志钩子可以监视和记录输入事件。钩子分为线程专用钩子和全局钩子,线程专用钩子只监视指定的线程,要监视系统中的所有线程,必须用到全局钩子。对于全局钩子,钩子函数必须包含在独立的动态链接库(DLL)中
GetInfo
- C#钩子编程,获取windows窗口控件的各项信息-This program is to get the all information of the windows in applications.
HideWindows
- VC++基于键盘钩子写的一个小程序,用来枚举当前所有打开的窗口名称、标题、类名称等,并实施强制隐藏、显示所选窗口,内含键盘钩子的DLL源文件,测试文件编译后要和DLL文件存放在一个目录中。-VC++ based on the keyboard hook to write a small program used to enumerate all currently open windows name, title, class name, etc., and mandatory hide, sh
skin_peeler
- 首先在程序中安装一个监控窗口过程的钩子函数,然后定义一个新的窗口函数,该函数将替换按钮的窗口函数,该函数主要对一些感兴趣的消息进行处理,调用自定义信息中的一些方法。最后在钩子函数中读取当前控件类的名称,如果为按钮类,则为按钮设置一个自定义的信息,并子类化按钮。-First, install a monitor in the program window procedure hook function, and then define a new window function, the func