CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - hook Keyboard mouse

搜索资源列表

  1. keyboard

    0下载:
  2. 这是一个用Windows API写的屏幕键盘。是很好的编程参考代码。 程序里面有两点新东东:Button的Subclassing,同时自己处理鼠标点击消息; 鼠标的钩子函数-This is a Windows API to write the screen keyboard. Programming is a good reference source. Inside there are two new Wanton : Button Subclassing, while their own m
  3. 所属分类:按钮控件

    • 发布日期:2008-10-13
    • 文件大小:13.78kb
    • 提供者:胡东
  1. HOOK

    0下载:
  2. 基于vc++,该程序会自动开机启动,运行后会全屏,屏蔽鼠标和键盘操作,但是按下F2键可退出,属于钩子程序-Based on vc++, the program will automatically boot and run after full-screen, mouse and keyboard screen, but pressing the F2 key to exit, is the hook program
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:330.03kb
    • 提供者:hcz
  1. hook

    1下载:
  2. 在vs2008下面测试通过 简单的实现了进程内的hook调用,和全局hook,hook部分简单的实现了屏蔽键盘和鼠标消息,后门为功能键F2,有详细的说明,适合入门研究学习 一共三个文件, v19e2_Hook.rar为全局hook程序块,v19e2_HookTest.rar为测试全局hook的程序,v20e1_innerHook.rar为在一个单独的进程内调用hook,-Simple implementation of the process, call the hook, and
  3. 所属分类:钩子与API截获

    • 发布日期:2012-11-21
    • 文件大小:25.5mb
    • 提供者:echo
  1. Hook

    0下载:
  2. vc写的。钩子程序:运行时截获键盘鼠标信息,只有输入正确密码才可回复正常。-vc written. Hook procedure: run-time interception of keyboard and mouse information, only enter the correct password before they can return to normal.
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:23.2kb
    • 提供者:fengxian
  1. Hook

    1下载:
  2. 通过钩子获取键盘鼠标事件,并将操作事件记录在文本。-Through the hook for keyboard and mouse events, and action events recorded in the text.
  3. 所属分类:钩子与API截获

    • 发布日期:2012-11-21
    • 文件大小:850.05kb
    • 提供者:汪俊伟
  1. Hook

    0下载:
  2. *钩子的两大应用;键盘钩子(分别记录字符输入,汉字输入),鼠标钩子(鼠标操作触发事件,键盘发声等),文件中包含五个完整工程,是学习钩子的很好资料。-Keyloggers hook the two applications keyboard hook (character input were recorded, Chinese character input), the mouse hook (trigger mouse events, keyboard sound, etc.), th
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:122.26kb
    • 提供者:tc
  1. testHookdll

    0下载:
  2. vc下实现hook全局键盘鼠标事件的demo,hook到之后没有做具体操作。-vc under the overall implementation hook keyboard and mouse events demo, hook to NOT to do after the concrete operation.
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:64.3kb
    • 提供者:wb
  1. hook

    0下载:
  2. 通过安装全局钩子屏蔽键盘鼠标消息,并把自己写到启动项。-Shielded by installing global hook keyboard and mouse messages, and to write their own boot entry.
  3. 所属分类:Hook api

    • 发布日期:2017-04-09
    • 文件大小:1.61mb
    • 提供者:何元杰
  1. hook

    0下载:
  2. 用钩子实现记录用户键盘、鼠标操作并重现。-By hook users to achieve record keyboard, mouse operation and reproducibility.
  3. 所属分类:Hook api

    • 发布日期:2017-03-30
    • 文件大小:19.57kb
    • 提供者:james
  1. hook

    0下载:
  2. 键盘勾,包括录制回放,可用做按键精灵,非常好用-Keyboard mouse hook, including the recording playback, can be used to do button wizard, very easy to use
  3. 所属分类:Hook api

    • 发布日期:2017-04-27
    • 文件大小:80.06kb
    • 提供者:kevin
  1. Key-Mouse-Hook

    0下载:
  2. 这个程序提供了C#1.1,2.0,3.5下面的键盘和鼠标钩子,并提供一个模拟键盘和鼠标的示例程序。是不是通过它你就可以开发间谍程序呢?-This procedure provides the following C# 1.1,2.0,3.5 hook the keyboard and mouse, and to provide a simulation example of the keyboard and mouse procedures. Are not through it you ca
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:411.35kb
    • 提供者:林锦祥
  1. Hook

    0下载:
  2. 钩子是WINDOWS中消息处理机制的一个要点,通过安装各种钩子,应用程序能够设置相应的子例程来监视系统里的消息传递以及在这些消息到达目标窗口程序之前处理它们。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,鼠标钩子可以截获鼠标消息,外壳钩子可以截获启动和关闭应用程序的消息,日志钩子可以监视和记录输入事件。钩子分为线程专用钩子和全局钩子,线程专用钩子只监视指定的线程,要监视系统中的所有线程,必须用到全局钩子。对于全局钩子,钩子函数必须包含在独立的动态链接库(DLL)中
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-16
    • 文件大小:201.95kb
    • 提供者:changyou
  1. MouseKeyboard

    0下载:
  2. HOOK制作键盘、鼠标热键,好使程序不在当前也可呼出-HOOK create keyboard, mouse, hotkeys, so that procedures can be exhaled is not current
  3. 所属分类:Hook api

    • 发布日期:2017-04-16
    • 文件大小:25.28kb
    • 提供者:cosepudn
  1. HookDll2

    0下载:
  2. hook dll driver for keyboard mouse source
  3. 所属分类:Hook api

    • 发布日期:2017-04-26
    • 文件大小:12.95kb
    • 提供者:sky
  1. Projects

    2下载:
  2. 用vc++写的钩子,利用DLL注入进程实现对鼠标和键盘的拦截-vc++ hook keyboard mouse
  3. 所属分类:Windows编程

    • 发布日期:2012-11-23
    • 文件大小:15.05mb
    • 提供者:谢斌
  1. XPokerBot

    0下载:
  2. XPoker Bot AI analysis. Hook / dll inject into process and send fake keyboard / mouse messages.-XPoker Bot AI analysis. Hook/dll inject into process and send fake keyboard/mouse messages.
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:207.26kb
    • 提供者:Daemn
  1. Hook

    1下载:
  2. 可以捕获键盘消息和鼠标消息,并输出到指定文本文件中。-News to capture the keyboard and mouse information, and output to the specified text file.
  3. 所属分类:Hook api

    • 发布日期:2017-05-21
    • 文件大小:5.93mb
    • 提供者:路上
  1. KbdMouseHook32

    0下载:
  2. Keyboard hook dll (both mouse and normal and low for keyboard). Compile as resource scr ipt included. Coded as hook dll to cancel all keystrokes and mouse clicks excep CTRL+ENTER for kids safe application
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:2.51kb
    • 提供者:qwertyfjs
  1. hook

    0下载:
  2. C#钩子程序,主要是统计一天中鼠标总的移动距离和键盘总的敲击次数。程序中直接使用了Georgi的UserActivityHook 类。-C# hook procedures, mainly statistical day, the total movement distance of the mouse and keyboard tapping the total number of times. Program directly using the Georgi' s UserActiv
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-31
    • 文件大小:148.87kb
    • 提供者:259
  1. FindWindow

    0下载:
  2. hook各种鼠标、键盘消息,窗口消息,很好的框架(Hook various mouse and keyboard messages)
  3. 所属分类:钩子与API截获

    • 发布日期:2018-05-04
    • 文件大小:204kb
    • 提供者:大无名
« 12 3 4 5 6 7 8 9 10 »
搜珍网 www.dssz.com