从项目中注入.DLL

时间:2014-03-14 07:27:44

标签: vb.net dll exe

我需要在项目中将.dll注入指定的.exe

Private Sub Timer2_Tick(sender As System.Object, e As System.EventArgs) Handles Timer2.Tick
    'If IsProcessRunning("Chrome") = True Then

    'End If

图片

enter image description here

有什么帮助吗?我已经有LoadLibraryA的注射器代码。

2 个答案:

答案 0 :(得分:0)

您无法使用CreateRemoteThreadLoadLibrary技术注入.net程序集。请记住,LoadLibrary加载非托管库而不是托管程序集。

您应该使用非托管语言重写代码,并注入生成的非托管DLL。

答案 1 :(得分:0)

你的意思是你必须使用dll文件中的方法吗?然后,您必须将DLL文件添加到项目引用中。

请点击this以参考答案。