dllinject_m2.dpr

来自「用delphi实现的远程注入工具,很多网站都有但不能找到」· DPR 代码 · 共 32 行

DPR
32
字号
program dllinject_m2;

{$APPTYPE CONSOLE}

{
 Author  : Rezmond
 URL     : www.projectbionet.com
 Email   : rezmond@projectbionet.com
 Relesed : Friday 11th Oct 2002
 Version : 1.00

 Freeware for non commerical use
 Note this only works under NT

 This method is another way of injecting a DLL
 It is limited to just calling Loadlibrary
 Method 1 showed you how to copy code to the
 remote process and use create thread to execute it

 This method simply uses the remote LoadlLibrary function
 as if it was the thread procedure

 IT calls CreateRemotethread on the address of Loadlibrary in the target process
 passing the dll name.


this snippet was from Ivo Ivanov API hookin tutorials
it explains the basics of how method 2 works 
You must understand how method 1 works before reading this....


Here comes the trick 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?