从 CreateRemoteThread 运行 DllImport 命令

发布于 2024-09-05 09:23:30 字数 220 浏览 3 评论 0原文

我有一个名为 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

美人迟暮 2024-09-12 09:23:30

后来我通过使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文