CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 钩子与API截获 搜索资源 - data process

搜索资源列表

  1. xHook

    0下载:
  2. 当你在网络上抓到一些数据包,想知道这些包是哪个进程发出来的时候, 怎么办?这个小工具也许能帮一些忙。 这个工具采用的是HOOK进程的winsock API,把一些数据记录下来。-When you caught on the network data packets and would like to know which of these packages is issued to the process, how do? This small tools may be able to
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:58703
    • 提供者:肖武
  1. ccrunHook

    0下载:
  2. 老妖的程序,很不错 一、客户端 程序命名为Client。监视系统的运行,如发现系统中有“记事本”进程(notepad.exe)或者“计算器”进程(calc.exe),立即杀死(kill)该进程,并将该事件写入数据库;定期进行检查,每间隔1分钟,检查数据库,将尚未上传的事件记录上传至服务器端。 程序命名为Server。监听网络,一旦有客户端上传数据,立即从中提取事件信息,并在用户界面中以列表方式加以显示。-Laojiao procedures, a very good one, the
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:442319
    • 提供者:虚名
  1. hookADO

    0下载:
  2. 如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。ADO数据库编程。在VB中利用ADO控件和ADO对象访问数据库,在VC中利用ADO技术访问数据库。-process of how to install the hook, how to compile the overall hook. Dynamic Link 13-17 global variable data sharing analysis. ADO database programming. In VB usi
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:160125
    • 提供者:zhou
  1. rawinput

    0下载:
  2. 主要流程: 1、向系统注册一个或者多个原始输入设备 2、在你注册的原始输入设备数据发生变化时,系统发送一个消息及新数据到你的进程 3、调用GetRawInputData或者GetRawInputBuffer来获取这些数据 简单修改了下,把一些不需要的信息去掉了,把头文件稍微改了下,因为有些人的SDK有点旧。然后加了当前键盘焦点窗口判断(很简单的实现,但是用起来很方便:)。 -main processes : 1, the registration system to o
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:18660
    • 提供者:李大叶
  1. InnerHook

    0下载:
  2. Hook编程。如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。-Hook programming. How to install the hook process, how to compile the overall hook, 13-17 Dynamic Link global variable data sharing analysis.
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:32017
    • 提供者:huangzhifeng
  1. Api Hook和封包拦截技术

    0下载:
  2. const WM_UNSUBCLASS = WM_USER + 2001 //卸载子类化消息 WM_SENDDATA = WM_USER + 2003 //收到要发送新数据包的消息 type PMyDLLVar = ^TMyDLLVar //用来共享的内存数据结构 TMyDLLVar = record SubClass: Boolean //是否已经子类化 HookWindow, SpyWindow: LongWORD //要安装HOOK的窗口及用于接收消息的窗口 hHook: LongWORD
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:199137
    • 提供者:黄春标
  1. Netiffer

    0下载:
  2. 网络数据包捕获查看工具, 支持三种 数据包捕获方式: 1、Raw嗅探 2、Hook指定进程API,截获数据包 3、端口数据转发-Network packet capture viewer, Support for packet capture of three ways: 1, Raw sniffer 2, Hook the specified process API, intercepted data packets 3, the port forwar
  3. 所属分类:Hook api

    • 发布日期:2017-03-23
    • 文件大小:294475
    • 提供者:Axel
  1. hookcode

    0下载:
  2. 详细讲述了如何安装钩子过程,如何编写全局钩子,动态连接库里的全局变量数据共享问题分析。-Detailed explanation on how to install the hook process, how to write global hooks, dynamic link library data sharing global variables analysis.
  3. 所属分类:Hook api

    • 发布日期:2017-03-30
    • 文件大小:104061
    • 提供者:lijingjing
  1. GETDATA

    0下载:
  2. 自动获取系统任意进程输入框中的数据 钩子使用 截获键盘输入和控件焦点消息 全局共享内存-Any process of automatic acquisition system, the data input box, hook the keyboard input and control using the intercepted messages focus global shared memory
  3. 所属分类:Hook api

    • 发布日期:2017-03-24
    • 文件大小:58348
    • 提供者:moto
  1. HookMouse

    0下载:
  2. 一个简单的鼠标钩子程序 Windows系统是建立在事件驱动的机制上的,说穿了就是整个系统都是通过消息的传递来实现的。而钩子是Windows系统中非常重要的系统接口,用它可以截获并处理送给其他应用程序的消息,来完成普通应用程序难以实现的功能。钩子的种类很多,每种钩子可以截获并处理相应的消息,如键盘钩子可以截获键盘消息,外壳钩子可以截取、启动和关闭应用程序的消息等。本文在VC6编程环境下实现了一个简单的鼠标钩子程序,并对Win32全局钩子的运行机制、Win32 DLL的特点、VC6环境下的MF
  3. 所属分类:Hook api

    • 发布日期:2017-03-30
    • 文件大小:46884
    • 提供者:冰雨
  1. packet_monitor

    0下载:
  2. 监控指定进程的数据收发程序,采用HOOK API方式,已写成相关的类实现-Monitoring procedures specified process data transceiver, using HOOK API method implementation related classes have been written
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:80059
    • 提供者:陶竹妖
  1. apihook

    0下载:
  2. C#.NET 2008下开发的API HOOK进程send函数,可封装成DLL,对发送的数据包进行拦截,修改-C#. NET 2008 development of the API HOOK process under the send function, can be packaged into a DLL, for sending data packets to intercept, modify,
  3. 所属分类:Hook api

    • 发布日期:2017-03-28
    • 文件大小:1238
    • 提供者:huodeming
  1. HookAPI

    0下载:
  2. 推荐一些Windows环境下的HOOK API各种示例源代码,包括网络、注册表、文件、对话筐、进程等各个方面,这是些编程常用到的HOOK示例,可作为资料保存,以备后用。 -To some of the Windows environment HOOK API source code for various examples, including network, registry, file, dialog baskets, and other aspects of the process,
  3. 所属分类:Hook api

    • 发布日期:2017-04-07
    • 文件大小:319298
    • 提供者:madud00078
  1. IE_HookTest

    0下载:
  2. 对IE进行HOOK, 通过读取IE进程内存方式修改改写内存方式 修改数据包或者地址,某公司病毒式推广曾采取这种方式-IE HOOK, IE read through the process of memory overwrite memory modify modify data packets or address, a viral promotion has taken this way
  3. 所属分类:Hook api

    • 发布日期:2017-05-15
    • 文件大小:3964797
    • 提供者:zhp21
  1. U_Tool

    0下载:
  2. 一款基于VC6.0开发的U盘小偷工具,主要功能拷贝U盘资料,可以进程隐藏,另外还实现了程序载入注册表开机自启动,实现计算机的关闭、注销、重启等。-A thief tool VC6.0 development of the U disk, the main function to copy the U disk data can be hidden process also program to load the registry to start at boot, the computer sh
  3. 所属分类:Hook api

    • 发布日期:2017-05-14
    • 文件大小:4062251
    • 提供者:王阳
  1. cutcopyrecorder

    0下载:
  2. 痛点: 1、曾经写好的代码,后面想要重用,不知道去哪找了,搜索了很久,也没找到,再写一遍很抓狂! 2、曾经在crt上敲过的命令,下次想用,history 怎么也找不到,很郁闷! 3、数据开发经常验证问题,但同样的问题下次再次出现时,又需要编写同样的SQL,这时... 解决方法: 监控剪贴板,只要变化了,就写LOG,就存起来,因为很多时候会把代码复制下的, 或者以后养成习惯,经常ctrl+c复制下,下次想找回来只需要在Log中搜索即可 运行方式: 程序运
  3. 所属分类:Hook api

    • 发布日期:2017-04-17
    • 文件大小:35045
    • 提供者:pengyong
搜珍网 www.dssz.com