NT下进程隐藏

所属分类:Windows编程
开发工具:Visual C++
文件大小:31KB
下载次数:231
上传日期:2005-07-21 14:10:29
上 传 者panguicong
说明:  在NT环境下隐藏进程,也就是说在用户不知情的条件下,执行自己的代码的方法有很多种,比如说使用注 册表插入DLL,使用Windows挂钩等等。其中比较有代表性的是Jeffrey Richer在《Windows核心编程》中 介绍的LoadLibrary方法和罗云彬在《Windows环境下32位汇编语言程序设计》中介绍的方法。两种方法的 共同特点是:都采用远程线程,让自己的代码作为宿主进程的线程在宿主进程的地址空间中执行,从而达 到隐藏的目的。相比较而言,Richer的方法由于可以使用c/c++等高级语言完成,理解和实现都比较容易 ,但他让宿主进程使用LoadLibrary来装入新的DLL,所以难免留下蛛丝马迹,隐藏效果并不十分完美。罗 云彬的方法在隐藏效果上绝对一流,不过,由于他使用的是汇编语言,实现起来比较难(起码我写不了汇 编程序:))。笔者下面介绍的方法可以说是对上述两种方法的综合:采用c/c++编码,实现完全隐藏。并 且,笔者的方法极大的简化了远程线程代码的编写,使其编写难度与普通程序基本一致。
(the NT environment hidden process, the user is unaware of the conditions, the implementation of their code There are various ways, for instance, the use of the registry into DLL, etc. linked to the use of Windows. The more representative Jeffrey Richer is the "core Windows programming" introduced by the LoadLibrary method and the Luo Bin, "under Windows 32 assembly language programming" introduced by the method. Two methods are common features are : remote threads are used to keep the code as host process threads in the host address space of the process to implement in order to achieve the purpose of hiding. Comparatively speaking, Richer way can be used as c/c Senior complete language, understanding and will be relatively easy to achieve, but he let the host process )

文件列表:
hidesrc (0, 2005-07-08)
hidesrc\Dll (0, 2005-07-11)
hidesrc\Dll\Dll.cpp (1603, 2003-10-09)
hidesrc\Dll\Dll.def (43, 2003-09-29)
hidesrc\Dll\Dll.rc (1618, 2003-10-09)
hidesrc\Dll\Dll.vcproj (4217, 2004-02-13)
hidesrc\Dll\Main.cpp (378, 2003-10-09)
hidesrc\Dll\resource.h (446, 2003-10-09)
hidesrc\Dll\stdafx.cpp (203, 2003-09-29)
hidesrc\Dll\stdafx.h (241, 2003-09-29)
hidesrc\Inject.sln (1403, 2004-02-13)
hidesrc\Loader (0, 2005-07-11)
hidesrc\Loader\Dll.dll (53248, 2004-07-09)
hidesrc\Loader\ll.cpp (4638, 2003-10-08)
hidesrc\Loader\Loader.cpp (5443, 2003-10-09)
hidesrc\Loader\Loader.rc (1737, 2003-09-29)
hidesrc\Loader\Loader.vcproj (3797, 2004-02-13)
hidesrc\Loader\stdafx.cpp (206, 2003-09-29)
hidesrc\Loader\stdafx.h (258, 2003-09-29)
hidesrc\ThreadParam.h (304, 2003-09-29)

近期下载者

相关文件


收藏者