从 CreateRemoteThread 运行 DllImport 命令
我有一个名为 Msg
的函数,它是从名为 tier0.dll
的 dll 导入的。我可以 DllImport 这很好,但该命令仅在 dll 附加到另一个可以完成 Msg 命令的进程时才有效。使用CreateRemoteThread
,我是否可以使用 C# 调用Msg
,同时仍然让它可以访问完成命令所需的附加进程的变量?谢谢!
I have a function named Msg
that's imported from a dll named tier0.dll
. I can DllImport
this just fine, but the command only works when the dll is attached to another process which can complete the Msg command. Using CreateRemoteThread
, it is possible that I could call Msg
using C# while still letting it have access to the variables of the attached process it needs to complete the command? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
后来我通过使用 EasyHook 注入 C# dll 并通过
GetProcAddress 使用各种 Marshal 函数解决了这个问题
以便调用其他函数。I later solved this by using EasyHook to inject a C# dll and use the various Marshal functions with
GetProcAddress
in order to call the other functions.