Code Monkey home page Code Monkey logo

torchlight-infinite-gm's Introduction

Torchlight-Infinite-GM

火炬之光无限GM界面呼出

方法介绍:

1.首先需要找到StaticFindObject函数的内存地址

x64dbg附加游戏,然后搜索字符串**"Illegal call to StaticFindObject() while serializing object data!"**即可定位StaticFindObject

2.找到ProcessEvent函数的内存地址
3.Call GM界面呼出函数
void CallGM()
{
 uintptr_t* QAHelperObject = SDKMgr::SDK_StaticFindObject(0, 0, L"/Script/UE_game.QAHelper", false);
uintptr_t* ConfigMenuFunc = SDKMgr::SDK_StaticFindObject(0, 0, L"/Script/UE_game.QAHelper:OpenConfigMenu", false);
struct {
    bool  bOpen;
} params;
SDKMgr::SDK_ProcessEvent(QAHelperObject, ConfigMenuFunc, &params);
printf("ProcessEvnet Call\n");   
}
4.Hook游戏主线程call CallGM()

image-20221127184546721

备注:

这是在一次逆向火炬之光无限时发现的一处有意思的功能。火炬内置提供给QA部门的测试GM插件,经过dump后可以看到有QAHelper这个ue类,当时初步怀疑可能是GM插件,然后找到类方法OpenConfigMenu可以打开该界面,经过测试后发现果然跟猜想的一致。

由于火炬是个强服务端的游戏,且GM面板中的GM总接口在release版本是关闭的。所以插件中的服务端功能都是无法使用的,但是在插件中我们可以看到很多有意思的东西。

提醒:

这仅仅是一次技术分享

torchlight-infinite-gm's People

Contributors

alienwu2018 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.