在 C# 中读取进程内存

发布于 2025-01-10 19:09:11 字数 1038 浏览 0 评论 0 原文

我想读取一些游戏的进程内存,这是java游戏并在KEmulator(Java应用程序模拟器)上运行。此时,我已经从窗口中获取了进程 ID,并从进程中获取了模块。但我没有找到作弊引擎(“jvm.dll”)中显示的指针。

这是我的代码:

Process[] p = Process.GetProcesses();
        Process procs = null;

        foreach (Process proc in p) {
            if (proc.MainWindowTitle == "KEmulator Lite v0.9.8") 
            {
                procs = proc;
                break;
            }
        }

        IntPtr addr = (IntPtr)0;
        foreach (ProcessModule pm in procs.Modules) {
            Debug.WriteLine(pm.ModuleName)
            if(pm.ModuleName == "jvm.dll")
                {
                addr = pm.BaseAddress;
            }
        }
        Debug.WriteLine(addr)

这是作弊引擎中显示的指针

作弊引擎上的指针

获得的模块

这是我从 Process 我从 processId 获取的模块

I want to read process memory on some game, this is java game and run on KEmulator which is Java application Emulator. In this point i already get the process id from the window and the Modules from Process. But i don't found the pointer showed in cheat engine ("jvm.dll").

This is my code :

Process[] p = Process.GetProcesses();
        Process procs = null;

        foreach (Process proc in p) {
            if (proc.MainWindowTitle == "KEmulator Lite v0.9.8") 
            {
                procs = proc;
                break;
            }
        }

        IntPtr addr = (IntPtr)0;
        foreach (ProcessModule pm in procs.Modules) {
            Debug.WriteLine(pm.ModuleName)
            if(pm.ModuleName == "jvm.dll")
                {
                addr = pm.BaseAddress;
            }
        }
        Debug.WriteLine(addr)

This is the pointer showed in cheat engine

Pointer on cheat engine

This is the module i got from the Process

The modules i get from processId

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文