首页 > 代码库 > 远程线程注入dll
远程线程注入dll
// CommonInject.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <windows.h> #include <WinUser.h> #include <WinDef.h> #include <iostream> #include <Tlhelp32.h> using namespace std; #include <Psapi.h> #pragma comment(lib,"Psapi.lib") //通用dll 注入器 HANDLE GetProcessWithName(const std::wstring &proc_name){ HANDLE hd = NULL; HANDLE hpross = NULL; int retls = 0; PROCESSENTRY32 pinfo = {0}; wchar_t szFileName[MAX_PATH] = {0}; hpross = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS,0); if(INVALID_HANDLE_VALUE =http://www.mamicode.com/= hpross)>vs2010 编译通过,unicode编码
通过输入进程id或者,通过修改进程名,来选择目标进程
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。