• 大小: 56KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-05-25
  • 语言: 其他
  • 标签: 进程  进程DLL  

资源简介

给定一个进程名称,获得当前进程系统中有该进程的实例(以PID列表形式),并给定一组DLL名称,检测DLL是否成功注入目标进程中。

资源截图

代码片段和文件信息

// Dlg_AddNewItem.cpp : implementation file
//

#include “stdafx.h“
#include “InjectionDllTestTool_v_0.2.h“
#include “Dlg_AddNewItem.h“


// Dlg_AddNewItem dialog

IMPLEMENT_DYNAMIC(Dlg_AddNewItem CDialog)

Dlg_AddNewItem::Dlg_AddNewItem(CWnd* pParent /*=NULL*/)
: CDialog(Dlg_AddNewItem::IDD pParent)
{

}

Dlg_AddNewItem::~Dlg_AddNewItem()
{
}

void Dlg_AddNewItem::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
DDX_Control(pDX IDC_EDIT_ITEMNAME mEdt_NewItemName);
}

BOOL Dlg_AddNewItem::OnInitDialog()
{
CDialog::OnInitDialog();

// set title of this dialog
SetWindowText(this->m_DlgtitleStr);
UpdateData(FALSE);
this->mEdt_NewItemName.SetLimitText(40);
//this->mEdt_NewItemName.GetFocus();

return TRUE;

}

BEGIN_MESSAGE_MAP(Dlg_AddNewItem CDialog)
ON_BN_CLICKED(IDOK &Dlg_AddNewItem::OnBnClickedOk)
ON_BN_CLICKED(IDCANCEL &Dlg_AddNewItem::OnBnClickedCancel)
END_MESSAGE_MAP()




// Dlg_AddNewItem message handlers

void Dlg_AddNewItem::OnBnClickedOk()
{
// TODO: Add your control notification handler code here
this->mEdt_NewItemName.GetWindowText(this->m_ItemNameStr);
OnOK();
}

void Dlg_AddNewItem::OnBnClickedCancel()
{
// TODO: Add your control notification handler code here
OnCancel();
}

评论

共有 条评论