远程线程注入
远程线程注入是最基础的一种注入方式,因为其调用了CreateRemoteThread()
函数而得名。但是因为其是最基础的注入方式,调用了windows API而特征明显,所以非常容易被检测出来。
这次的实验对象是notepad.exe
#include <Windows.h>
#include <stdio.h>
#include <TlHelp32.h>
#include <iostream>
using namespace std;
BOOL CreateRemoteThreadInjectDll(DWORD dwProcessId, char* pszDllFileName);
DWORD find_process(char* process_name);
int main() {
char* dllPath = "C:\\Users\\w\\source\\repos\\QuickDll\\x64\\Debug\\QuickDll.dll";
char* process = "notepad.exe";
DWORD process_id = find_process(process);
if (process_id != 0)printf("%s process_id is %d\n",process, process_id);
BOOL b = CreateRemoteThreadInjectDll(process_id, dllPath);
cout << b;
return 0;
}
首先是一个大致的框架,下面就一个一个讲解
DWORD find_process(char* process_name) {