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

搜索资源列表

  1. Hook和hotKey

    0下载:
  2. 这份资料是关于Windows系统的勾子编程的详细介绍,希望大家喜欢。-this information on the Windows system is a hook detailed descr iption of the program, hope you like them.
  3. 所属分类:加密解密

    • 发布日期:2008-10-13
    • 文件大小:36.63kb
    • 提供者:王浩
  1. Hook系统服务隐藏端口源码及示例程序

    0下载:
  2. Hook系统服务隐藏端口源码及示例程序-Hook System hidden source ports and sample program
  3. 所属分类:弱点检测代码

    • 发布日期:2008-10-13
    • 文件大小:22.56kb
    • 提供者:中文姓名
  1. VC-system-programming

    1下载:
  2. 包括:cdrom控制,cpu和mouse信息,USB编程,测试cpu速度,检测键盘按键,列出进程,鼠标钩子编程,系统信息获取,注册表编程-include : cdrom control, cpu and mouse information, USB programming, cpu speed test to detect the keyboard keys, listing process, the mouse hook programming, system information acce
  3. 所属分类:弱点检测代码

    • 发布日期:2008-10-13
    • 文件大小:605.33kb
    • 提供者:hugh
  1. 2005325183220756

    0下载:
  2. vc制作型号密码查看器.熟悉系统编程的应该知道钩子能截获系统并得理发送给其它应用程序的消息,能完成一般程序无法完成的功能。这里我们主要用到了WH_KEYBOARD 键盘钩子和WH_MOUSE 鼠标钩子.-vc production models password viewer. Programming familiar with the system should know hook system capable of intercepting and with the other barber
  3. 所属分类:系统编程

    • 发布日期:2008-10-13
    • 文件大小:23.83kb
    • 提供者:阿飞
  1. hook-linux.rar

    1下载:
  2. Linux 2.6 内核下劫持系统调用,代码比较简单,还是可以参考参考的。,Linux 2.6 kernel system call hijacking, the code is relatively simple, or can refer to as a reference.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2013-03-30
    • 文件大小:36.91kb
    • 提供者:dengke
  1. ParkMouse_src

    0下载:
  2. 采用系统窗体Hook技术后台控制鼠标。系统级的Hook采用独立的DLL编写。-Controlling the mouse using an application that runs in the background. Uses system wide Windows Hooks.System wide hooks in windows must be written as a separate DLL.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-01
    • 文件大小:9.43kb
    • 提供者:肯斯特
  1. APIhook

    0下载:
  2. C++写的hook api的例子,演示如何劫持系统API。-Example of apihook C++ write, demonstrates how to hijack the system API.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-08
    • 文件大小:100.49kb
    • 提供者:张玉杰
  1. getMesseageHook

    1下载:
  2. 枚举系统中的全局消息钩子,网上有c和vb版的,把它转成了delphi-Enumeration in the system global message hook, on-line with c, vb version, turn it into delphi
  3. 所属分类:Windows Kernel

    • 发布日期:2016-08-26
    • 文件大小:6.61kb
    • 提供者:9908006
  1. iconizer_src

    0下载:
  2. hook技术的应用,Iconizer is a small utility that installs a system-wide hook to provide an extra caption button next to the minimize/maximize/close buttons on exsiting applications-hook technique, Iconizer is a small utility that installs a system-wide hoo
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-29
    • 文件大小:30.15kb
    • 提供者:nile
  1. TravelHit

    0下载:
  2. 统计键盘点击和鼠标移动的程序 src目录下的Old_Version目录是老版本的程序,里面的功能不如New_Version丰富 程序功能: 1. 统计鼠标移动距离和键盘点击次数; 2. 按下键盘时,发出声音 程序工作原理: 1. 用系统钩子来拦截键盘消息 -Statistics mouse clicks and keyboard procedures src directory under the directory Old_Version is a
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-30
    • 文件大小:523.05kb
    • 提供者:zhang
  1. Hook

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

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

    0下载:
  2. Example of kernel hook (MS Visual Studio 2005) of system call NtOpenProcess to prevent opening process from user mode
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-30
    • 文件大小:5.34kb
    • 提供者:Spec8472
  1. kernel.txt.tar

    0下载:
  2. Sometimes, we run into a situation when we badly need to hook some kernel function, but are unable to do it via conventional PE-based hooking. This article explains how kernel functions can be directly hooked. As a sample project, we are going to pre
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-30
    • 文件大小:9.59kb
    • 提供者:gto
  1. HOOK

    0下载:
  2. 控制银证直通车键盘热键的说明格式为Delphi远程线程注入系统进程-Control of Silver Certificate Note Express format of the keyboard hotkey remote thread injection system for the Delphi process
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-09
    • 文件大小:1.62mb
    • 提供者:joe
  1. XueTr

    0下载:
  2. 1.进程、线程、进程模块、进程窗口、进程内存信息查看,热键信息查看,杀进程、杀线程、卸载模块等功能   2.内核驱动模块查看,支持内核驱动模块的内存拷贝   3.SSDT、Shadow SSDT、FSD、KBD、TCPIP、IDT信息查看,并能检测和恢复ssdt hook和inline hook   4.CreateProcess、CreateThread、LoadImage、CmpCallback、BugCheckCallback、Shutdown、Lego等Notify Routine信息查
  3. 所属分类:Windows Kernel

    • 发布日期:2017-05-14
    • 文件大小:3.53mb
    • 提供者:接收
  1. SDT-Cleaner-v1.0---Stable-Version

    0下载:
  2. 用于检测SDT和恢复SDT的例子代码,可用于ARK中的系统钩子扫描-Example of code that can be used for detection to SDT and recovery of SDT ARK system hook scan
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-17
    • 文件大小:237.41kb
    • 提供者:ansnap
  1. ssdt-shadow-hook

    2下载:
  2. 易语言 ssdt shadow hook 保护窗口,挂钩多个函数,兼容X86 XP~2008所有32位操作系统。包含调用和驱动源代码,使用sys边源包可编译-The easy language ssdt shadow hook Protection window, linked to more than one function, compatible with X86 XP ~ 2008 all 32-bit operating system. Contains call and driver
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-07
    • 文件大小:374.76kb
    • 提供者:学俊
  1. VCPP-driver-Hook-kernel-system-call

    0下载:
  2. VC++ 驱动层Hook系统内核调用 VC++ driver Hook kernel system call VC++ driver Hook kernel system ca-VC++ driver Hook kernel system call
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-07
    • 文件大小:76.05kb
    • 提供者:刘杰
  1. hook

    0下载:
  2. 利用Hook技术,得到窗口上的鼠标键盘等系统消息,可作为入门例子-Hook technology used, to get on the window system messages such as mouse and keyboard can be used as introductory example
  3. 所属分类:Windows Kernel

    • 发布日期:2017-11-26
    • 文件大小:255.8kb
    • 提供者:Tassel
  1. systemHook

    0下载:
  2. 系统钩子函数实例,一个比较一般的程序-System hook function examples
  3. 所属分类:Windows Kernel

    • 发布日期:2017-03-31
    • 文件大小:149.61kb
    • 提供者:装抓
« 12 3 »
搜珍网 www.dssz.com