我需要在项目中将.dll
注入指定的.exe
。
Private Sub Timer2_Tick(sender As System.Object, e As System.EventArgs) Handles Timer2.Tick
'If IsProcessRunning("Chrome") = True Then
'End If
图片
有什么帮助吗?我已经有LoadLibraryA
的注射器代码。
答案 0 :(得分:0)
您无法使用CreateRemoteThread
,LoadLibrary
技术注入.net程序集。请记住,LoadLibrary
加载非托管库而不是托管程序集。
您应该使用非托管语言重写代码,并注入生成的非托管DLL。
答案 1 :(得分:0)
你的意思是你必须使用dll文件中的方法吗?然后,您必须将DLL文件添加到项目引用中。
请点击this以参考答案。