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

搜索资源列表

  1. 将DLL注入到其他进程中

    0下载:
  2. 一个进程隐藏的程序-a hidden process procedures
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:53.74kb
    • 提供者:小叶子
  1. XPhook

    0下载:
  2. 我在XP下用过detour,也是用钩子将dll注入到其他进程进行API拦截,当时拦截的是 ShowWindow以及文件操作的一些API,感觉没什么问题阿.你可以先用Detour拦截一下其他的API试试,比如 CreateProcess,这个API我拦截过,Detour能拦截的 -I used the XP detour. also used to hook dll injected into other processes API interception, then intercept t
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:2.26kb
    • 提供者:byron
  1. HOOKWindowsAPI

    1下载:
  2. 1. 内容 2. 介绍 3. 挂钩方法 3.1 运行前挂钩 3.2 运行时挂钩 3.2.1 使用IAT挂钩本进程 3.2.2 改写入口点挂钩本进程 3.2.3 保存原始函数 3.2.4 挂钩其它进程 3.2.4.1 DLL注入 3.2.4.2 独立的代码 3.2.4.3 原始修改 4. 结束语-1. Content 2. Introduction 3. Linked to the former method of oper
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:11.68kb
    • 提供者:flyfan
  1. TestDebug

    0下载:
  2. 跟踪监视方案概览 作者:彭春华 当我们对某一目标程序进行API函数的跟踪监视分析时,根据跟踪监视的目标,基本上有以下几种途径实现对API函数的跟踪监视: 写Log记录分析 如果拥有目标程序的源代码,就可以在关键的API函数的入口点和出口点记录API的参数和运行结果。在除错程序中是经常可以看到这种方法的。该方法的缺点就是必须拥有源代码,每次修改Log时必须重新编译源代码。由于该方案和我们要讨论的目标不同,在此不作讨论。 将监视代码注入目标程序
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:34.69kb
    • 提供者:李泉
  1. Hook

    1下载:
  2. 注入DLL到进程,hook游戏成功的例子
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:336.64kb
    • 提供者:是啊
  1. 微软研究院的开发包

    0下载:
  2. 可以拦截特定进程api的微软开发包1.5, 里面有微软的源代码,和我做的2个测试例子,1个是把dll注入进程中,1个是dll和应用程序同时启动。-can intercept specific process api Microsoft Development Kit 1.5, which has Microsoft's source code, and I made two of the test case, an injection is dll process, a yes dll
  3. 所属分类:钩子与API截获

    • 发布日期:2008-10-13
    • 文件大小:677.62kb
    • 提供者:赵刚
  1. InjectDLL

    0下载:
  2. DLL注入用于运行,迫使它加载一个动态链接库在另一个进程的地址空间代码的技术。 DLL注入经常被第三方开发的方式来影响它的作者并没有预料或打算程序的行为。例如,注入的代码可以捕获系统功能调用,或阅读文本框的密码,不能以通常的方式完成的内容。
  3. 所属分类:钩子与API截获

    • 发布日期:2010-12-13
    • 文件大小:26.7kb
    • 提供者:timjosten
  1. MyInject

    0下载:
  2. 自己用C++写的一个注入进程dll的注入器,经过测试记事本,成功注入-They used to write a C++ dll into the process, the injector, tested Notepad, successfully injected
  3. 所属分类:Hook api

    • 发布日期:2017-11-08
    • 文件大小:21.67kb
    • 提供者:zhi
  1. gouziDLL

    1下载:
  2. 安装DLL钩子源码,用来注入进程所用,做*用-Installation DLL hook source, used for injection process
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:61.43kb
    • 提供者:kingsoft
  1. Defender

    0下载:
  2. VC++6.0编写的系统监控程序Demo包括主程序和DLL,只做演示,DLL采用全局钩子注入所有进程并在加载DLL时改写进程IAT。本程序演示截获MessageBox和MessageBeep-VC++6.0 program written in System Monitor Demo, including the main program and the DLL, Zhi Zuo demonstration, DLL into all processes using the global hoo
  3. 所属分类:Hook api

    • 发布日期:2017-05-21
    • 文件大小:6.07mb
    • 提供者:孙新
  1. ApiHook

    0下载:
  2. API Hook示例代码:用来将自定义的 Dll 注入进程空间,并钩住指定 API 函数,关于注入和钩 API 的代码,这里主要介绍如何使用这个小工具方便实现截获 API 的功能-API Hook Sample Codes
  3. 所属分类:Hook api

    • 发布日期:2017-03-28
    • 文件大小:147.64kb
    • 提供者:litjerk
  1. DLLremoteinject

    1下载:
  2. DLL远程注入技术范例, 详细注释说明如何把一个DLL远程注入到另外的进程里面,利用钩子监视外进程的消息。-Examples of long-range DLL injection technique, detailed notes on how to bring a long-range DLL is injected into another process which, to use hooks to monitor the news outside the process.
  3. 所属分类:Hook api

    • 发布日期:2014-12-25
    • 文件大小:578.9kb
    • 提供者:Tan LiHui
  1. HookSy

    0下载:
  2. 注入技术简述: 本实例其实是一个查看工具。完成以下的几个功能: 1、查看系统当前的运行进程; 2、查看系统当前的运行线程; 3、查看系统中运行某个进程中包含的DLL列表; 4、通过创建远程线程的方法将DLL注入到目标进程中: 5、通过Hook方法将DLL注入到目标进程中: -A brief injection technique: This example is actually a view tool. Completion
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:11.87kb
    • 提供者:赵积元
  1. RemoteInjectSample

    0下载:
  2. Visual C++ 编写的dll注入远程进程的示例程序.-Visual C++ written dll into the remote process, the sample program.
  3. 所属分类:Hook api

    • 发布日期:2017-03-24
    • 文件大小:9.1kb
    • 提供者:wzk
  1. GamePlugin

    0下载:
  2. 星际108B单机刷钱刷气 初学,所以功能很弱 (随便找个DLL注入的东西注到星际进程,然后就自动每100毫秒+10钱和气)-Interstellar gas-108B single Shuaqian brush beginner, it functions very weak (easily find what DLL injection into the interplanetary injection process, and then automatically every 100
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:205.17kb
    • 提供者:CH2
  1. Remote-thread-injection

    0下载:
  2. 创建远程线程,无DLL直接注入其他进程!没有全部注入,只注入特定进程!可以自己改为全注入!-Create a remote thread, no DLL is injected directly into other processes! Not all of implantation, only into the specific process! Can inject itself into the whole!
  3. 所属分类:Hook api

    • 发布日期:2017-03-29
    • 文件大小:1.54kb
    • 提供者:zhouyang
  1. yczr

    0下载:
  2. 远程注入!可以将指定dll注入到指定进程当中!仅供学习参考之用!-Remote injection! You can specify the dll into the process to specify which! Learning for informational purposes only!
  3. 所属分类:Hook api

    • 发布日期:2017-04-03
    • 文件大小:1.54kb
    • 提供者:吴磊
  1. InjectDll

    0下载:
  2. DLL注入工具源码,包括远程线程注入以及启动暂停进程修改入口注入,另附后者需要的特殊DLL的源码-DLL injection tool source, including remote thread injection and start the process to modify the entrance into the suspension, which attached a special DLL source code need
  3. 所属分类:Hook api

    • 发布日期:2017-03-22
    • 文件大小:42.31kb
    • 提供者:老灰
  1. zhuruqi

    0下载:
  2. dll注入的基本方法,列子中通过动态调用dll的方式,将zhuruqi.dll加载到qq.exe的内存中,当然要首先从进程列表中取得qq.exe的pid号。写的不好,但是原理上能通,而且注释了,以后会慢慢改进。-dll into the basic method, the dynamic call dll Liezi by the way, will be loaded into qq.exe zhuruqi.dll memory, of course, must first obtain qq
  3. 所属分类:Hook api

    • 发布日期:2017-05-19
    • 文件大小:4.97mb
    • 提供者:工序龙
  1. dll

    1下载:
  2. dll注入,根据设置的进程名称,进行dll注入。进程名称和dll地址都写在代码里边,展示界面为dos窗体。已经在win7,xp下进行过测试,没问题。希望可以给需要使用者提供些帮助和思路-dll injection, according to the process name settings, perform dll injection. Dll process name and address are written in code inside, display interface to d
  3. 所属分类:Hook api

    • 发布日期:2015-04-14
    • 文件大小:27.98mb
    • 提供者:baby
« 12 3 »
搜珍网 www.dssz.com