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

搜索资源列表

  1. API_HOOK.rar

    0下载:
  2. API HOOK源码,自己写的,C++源码,使用的也是定位IAT表,获取需要HOOK的API,然后HOOK并处理~,API HOOK source, wrote it myself, C++ Source, the use of the IAT is also positioning table, access to the needs of HOOK the API, and then HOOK and processed ~
  3. 所属分类:Hook api

    • 发布日期:2017-03-28
    • 文件大小:18247
    • 提供者:dylan
  1. IATHOOK.rar

    0下载:
  2. 通过修改iat输入表来hook api,本例子实现如何去hook非静态调用的api,Iat table by modifying the input to hook api, the example of the realization of how to hook the api call non-static
  3. 所属分类:Hook api

    • 发布日期:2017-05-15
    • 文件大小:3711798
    • 提供者:李泽球
  1. IATHook_dll

    0下载:
  2. this is a simple IAT Hook Dll , whick hooks function send in ws2_32.d-this is a simple IAT Hook Dll , whick hooks function send in ws2_32.dll
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:1957
    • 提供者:12usver12
  1. IAT-API-Hook

    0下载:
  2. Delphi IAT Hook API(沒使用到Dll,我打算用CreateRemoteThread來實現Hook,可以說還沒完成)-Delphi IAT Hook API
  3. 所属分类:Hook api

    • 发布日期:2017-03-26
    • 文件大小:356899
    • 提供者:asd
  1. DLL-IAT-hook

    0下载:
  2. 屏幕取词功能实现方法2 一个通过修改DLL文件的IAT表来实现的hook开发包源码--Screen Translation Method 2 to achieve a functional DLL file by modifying the IAT table to achieve the hook development kit source code-
  3. 所属分类:Hook api

    • 发布日期:2017-03-25
    • 文件大小:172162
    • 提供者:py
  1. IAT_HOOK

    0下载:
  2. 使用ROOTKIT技术,实现ITA HOOK-ITA_HOOK
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:256564
    • 提供者:rootkit
  1. apihook_Code

    0下载:
  2. 一个通过修改DLL文件的IAT表来实现的hook开发包源码-A DLL file by modifying the IAT table to achieve the hook development kit source
  3. 所属分类:Hook api

    • 发布日期:2017-11-11
    • 文件大小:190152
    • 提供者:站长
  1. vice

    0下载:
  2. 能够找出给种类型的系统Hook,包括IAT表,SSDT表等相关的钩子-VICE is a tool to find hooks. Features include: 1. Looks for people hooking IAT s. 2. Looks for people hooking functions in-line aka detouring. 3. Looks for hooks in the System Call Table. Thanks to Tan perh
  3. 所属分类:Hook api

    • 发布日期:2017-04-26
    • 文件大小:67211
    • 提供者:袁晓辉
  1. API

    0下载:
  2. 进程注入API的连接 标题:进程注入/ API的挂接 描述:这表明你2接口连接的技术。内隐联系测验连接和功能调整,还如何在您的代码注入到另一个VB的过程和钩子函数遥。由于离子离子亚历克约内斯库他注射演示。重要的是,你读了读的“注入”目录。 此文件来自星球源Code.com ...家庭数百万行的源代码 您可以查看关于此代码/和或投票在: http://www.Planet-Source-Code.com/vb/scr ipts/ShowCode.asp?txtCodeId=
  3. 所属分类:Hook api

    • 发布日期:2017-03-28
    • 文件大小:17565
    • 提供者:fangxiaowang
  1. iat_hook

    0下载:
  2. Sample for how to hook IAT table
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:31742
    • 提供者:trumken
  1. TextExtent

    0下载:
  2. 使用IAT HOOK 改变系统API调用行为-use IAT HOOK change the default api function behavior
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:185467
    • 提供者:ht Zhang
  1. APIHook

    0下载:
  2. API拦截pdf的手册,里面讲解了Injection\IAT HOOK,以及实现的代码,还讲解了驱动层的HOOK部分-API interception pdf manual, which explains Injection \ IAT HOOK, and the realization of the code, but also explain part of the driver layer HOOK
  3. 所属分类:Hook api

    • 发布日期:2017-04-04
    • 文件大小:129460
    • 提供者:jibagan
  1. IATHOOK-for-FASM

    0下载:
  2. 一份相对比较简单的IAT HOOK 汇编代码 比较简短-A relatively simple IAT HOOK relatively short assembly code
  3. 所属分类:Hook api

    • 发布日期:2017-04-05
    • 文件大小:1195
    • 提供者:
  1. UIIAThook

    0下载:
  2. MFC实现的IAT HOOK,另外实现了HOOK按键,对初学者应有帮助!-MFC implementation IAT HOOK, HOOK key addition to achieve, should help the beginners!
  3. 所属分类:Hook api

    • 发布日期:2017-11-23
    • 文件大小:3999056
    • 提供者:BZQ
  1. IATHook

    0下载:
  2. ring3下的IAT HOOK,IAT是一个IMAGE_THUNK_DATAj结构的数组。只要程序装载进内存中,就只与IAT查询信息,所以可见IAT表是一个非常重要的位置。 如果在IAT表中把某个函数的地址修改为钩子函数的地址,当调用到函数的时候,就会执行到该钩子函数中去 -the ring3 under IAT HOOK, IAT is a IMAGE_THUNK_DATAj structure array. As long as the program is loaded into
  3. 所属分类:Hook api

    • 发布日期:2017-11-08
    • 文件大小:1171
    • 提供者:陈峰
  1. HOOK

    0下载:
  2. HOOK API 程序采用修改IAT的方法,也就是修改导入表。。。。。 -HOOK API
  3. 所属分类:Hook api

    • 发布日期:2017-03-31
    • 文件大小:121308
    • 提供者:lym
  1. inline-hook

    0下载:
  2. Il y a quelques temps, j avais publié sur le blog la technique de l IAT Hook qui permettait de détourner l appel d une fonction via la table d importation. Mais cela a ses limites: si vous posez un hook après que le programme ai récupéré l adresse
  3. 所属分类:Hook api

    • 发布日期:2017-03-30
    • 文件大小:278317
    • 提供者:Lord Noteworthy
  1. hooksr

    0下载:
  2. 这是一个dll工程。通过注入到其他进程能捕获到进程的网络收发数据。(所用技术:IAT HOOK,能截取send()、recv()等网络收发函数)-This is a dll project which can capture the data from send(),recv() and so on.
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:4540
    • 提供者:collin
  1. AntiIATHook

    0下载:
  2. IAT HOOK的检测及修复示例,可用于用户态的rootkit侦测及修复。-show you how to detect and repair the IAT HOOK in user mode.
  3. 所属分类:Hook api

    • 发布日期:2017-04-25
    • 文件大小:34340
    • 提供者:催留毕
  1. HOOK-IAT

    0下载:
  2. 通过分析PE文件格式,修改函数入口点,实现IAT HOOK-By analyzing PE file format, modify the function entry points, for IAT HOOK
  3. 所属分类:Hook api

    • 发布日期:2017-04-29
    • 文件大小:119268
    • 提供者:YQH
« 12 »
搜珍网 www.dssz.com