搜索资源列表
FU_Rootkit
- hide processes, elevate process privileges, fake out the Windows Event Viewer so that forensics is impossible, and even hide device drivers (NEW!) All this without any hooking.
FindManSrc
- 句柄值查询器. 可实现集灰色按钮客星、星号密码查看器、无效菜单激活器于一身的实用工具。由于现在很多程序员习惯把软件的密码或序列号事先计算出来,存放到一个不可见的控件元素中,所以,添加上类的搜索与关键字查询功能, 它还具有密码读取的能力。 -handle inquiries for value. Set achievable gray button-passenger Star Password viewer, invalid menu activation device in a p
rawinput
- 主要流程: 1、向系统注册一个或者多个原始输入设备 2、在你注册的原始输入设备数据发生变化时,系统发送一个消息及新数据到你的进程 3、调用GetRawInputData或者GetRawInputBuffer来获取这些数据 简单修改了下,把一些不需要的信息去掉了,把头文件稍微改了下,因为有些人的SDK有点旧。然后加了当前键盘焦点窗口判断(很简单的实现,但是用起来很方便:)。 -main processes : 1, the registration system to o
hHooksZwQuerySystemInformation
- hHook 内核ntoskrnl sZwQuerySystemInformation隐藏任务管理器进程名-hHook kernel ntoskrnl sZwQuerySystemInforma tion task management device hidden from the process
WIN30
- MAPWIN, written by Richard Smith (president of Phar Lap Software), is a program that makes it easy to see what API functions a Windows program uses, or what functions a dynamic-link library (DLL) or device driver provides. Phar Lap generally u
joystick-api
- 游戏手柄joystick api测试程序(VB): joyGetNumDevs 获取当前系统支持的游戏设备数量 joyGetDevCaps 查询获取指定的游戏杆设备以确定其性能 joySetCapture 向系统申请捕获某个游戏设备并定时将该设备的状态值通过消息发送到某个窗口 joyReleaseCapture 释放对某个游戏设备的捕获 joyGetPos 获取游戏设备的坐标位置和按钮状态 joyGetPosEx 获取游戏设备的坐标位置和按钮状态 joyG
AddHotkeysSrc
- Hooking phone device on Windows Mobile and adding hotkeys
rawinput_src
- Raw input device. // Create a new InputDevice object, get the number of // keyboards, and register the method which will handle the // InputDevice KeyPressed event -Raw input device. // Create a new InputDevice object, get t
CQQFind
- QQ美女找茬 作弊器 在windows XP下测试通过。-QQ beauty finding fault cheating device
super.bluetooth.hack.v1.07
- describing how to hack the bluetooth device.
CodeInjection
- pe格式文件注入器 可注入自己的程序或木马-pe format file can be injected into the device' s own programs or Trojan
green
- 绿光抓包器.本程序只钩挂了"send","sendto","recv","recvfrom"这4个函数,WSAsend等不钩挂, 因为是用API钩子写的抓包程序,而且小弟也是菜鸟,难免有BUG。源代码可以任意修改和发布。 你改得好的话请给我一份。小弟感激不尽。-Ethereal green device. This procedure is only hook the " send" , " sendto" , " recv" , &quo
hookssdt
- 内核模式设备驱动程序对象名称来引用文件。此名称是 DosDevices 一起与该文件的完整路径。 -Kernel-mode device driver object name to reference documents.This name is DosDevices together with the full path of the file.
spq_yuanzi
- 早几年在vc6下写的边锋原子游戏算牌器, api hook技术,游戏通讯协议分析,绝对原创。-Written in a few years ago under vc6 game operator license winger atomic device, api hook technology, games, communication protocol analysis, an absolute original.
DrvFltIp
- 防火墙过滤驱动,1) 一个创建设备的驱动程序入口,为通讯创建符号连接和处理IRPs(分派,加载,卸载,创建...)的标准例程。 2)在标准例程里管理IRPs.在我们的代码中,我们实现了四个IOCTL代码:START_IP_HOOK(注册过滤函数),STOP_IP_HOOK(注销过滤函数), ADD_FILTER(安装新的过滤规则),CLEAR_FILTER(清除所有规则). 3)对于我们的驱动,我们实现多个用于过滤的函数。 -Firewall filter dri
cinder-Cinder-Kinect-e607953.tar
- Microsoft Kinect Game Control Device Of 3D Scan Gaming
RawKey
- 非钩子,使用原始输入设备,获取键盘输入的源码-Non-hook, using the original input device, keyboard input source for
shielded-keyboard-and-mouse-
- 这是一个屏蔽键盘鼠标方法与实现技术简介: (1)全局键盘/鼠标钩子,对键盘和鼠标的消息进行屏蔽 (2)通过设备的GUID号来禁用设备 (3)通过禁用鼠标键盘的服务禁用鼠标键盘 (4)加载键盘鼠标驱动来控制键盘和鼠标,并禁用 -About shielded keyboard and mouse methods and implementation techniques Descr iption: (1) global keyboard/mouse hook, the keyboar
LockScreen
- 锁屏程序,如果检测到u口插入设备,而且设备类型是hid时,弹出窗口-Lock screen program, if detected u mouth into the device and the device type is hid, pop-up window
APIH00k
- API钩子系统一般框架 通常,我们把拦截API的调用的这个过程称为是安装一个API钩子(API Hook)。一个API钩子基本是由两个模块组成:一个是钩子服务器(Hook Server)模块,一般为EXE的形式;一个是钩子驱动器(Hook Driver)模块,一般为DLL的形式。 钩子服务器主要负责向目标进程注入钩子驱动器,使得钩子驱动器运行在目标进程的地址空间中,这是关键的第一步,而钩子驱动器则负责实际的API拦截处理工作,以便在我们所关心的API函数调用的之前或之后能做一些我们