当前位置:网站首页>[Frida practice] "one line" code teaches you to obtain all Lua scripts in wegame platform
[Frida practice] "one line" code teaches you to obtain all Lua scripts in wegame platform
2022-07-07 09:40:00 【Night owls chasing dreams】
List of articles
Reading guide
development environment
| Version number | describe | |
|---|---|---|
| operating system | Win11-21H2 | Internal version number 22000.588 |
| Python | Python3.7.1 | |
| frida.exe | 15.0.18 | |
Preliminary knowledge
luaL_loadbuffer
The function prototype (https://www.lua.org/manual/5.1/manual.html#luaL_loadbuffer):
int luaL_loadbuffer (lua_State *L, // Lua Handle
const char *buff, // lua Script
size_t sz, // lua Number of script bytes
const char *name); // Mark ( Through analysis, we can find that here is the file name )
Load the buffer as Lua block . This function is used to load lua_load The block in the buffer pointed to . name Is the block name , For debugging information and error messages .
WeGame Is used in Lua51.dll, It exports two functions luaL_loadbuffer and luaL_loadbufferx, adopt IDA Analysis can guess ,luaL_loadbufferx Just compare luaL_loadbuffer Multiple parameters a5, The other parameters are the same .
frida Interceptor Interceptor
frida Of Interceptor Module ,attach The function prototype is Interceptor.attach(target, callbacks[, data]), Realize the parameter target Conduct hook The operation of , The following is a simple parameter analysis :
target:This is a NativePointer, Specify the address of the function you want to block calls . We can go throughModule.getExportByName()To get the export function of the executable file as this parameter ,frida Automatic processing .callbacks:seeing the name of a thing one thinks of its function , This is a hook Collection of callback functions for , It contains hook Before and hook The last two callback functions .onEnter(args):Parameters of the callback function args by hook The parameter array of the function , Each parameter is aNativePointerobject , We can get parameter information here , Or tamper with the parameter content .onLeave(retval):The call is completedObjective functionAfter treatment , ParametersretvalIt's aNativePointerobject , yesObjective functionThe return value of , We can modify the pointer content to hook Purpose .
data:Optional parameters , Ignore... For the time being .
Example :
Interceptor.attach(Module.getExportByName('libc.so', 'read'), {
onEnter(args) {
this.fileDescriptor = args[0].toInt32();
// this Context information : Contains register information context、 Return value address returnAddress、 Threads ID threadId etc.
console.log('Context information:');
console.log('Context : ' + JSON.stringify(this.context));
console.log('Return : ' + this.returnAddress);
console.log('ThreadId : ' + this.threadId);
console.log('Depth : ' + this.depth);
console.log('Errornr : ' + this.err);
},
onLeave(retval) {
if (retval.toInt32() > 0) {
/* do something with this.fileDescriptor */
}
}
});
ps: callbacks It's an object ,frida In the implementation , At initialization time , Fill the object
Context information, This is why this You can visitcontext、returnAddress、threadIdThese content .
ps2: I've been tangled up before
onEnterVariables generated in , How theonLeaveUse in , Actually, directly through this That's all right.this.tempVal=333;. It's all right js Basic understanding and application of .
NativeFunction Create directory
frida call dll function , adopt NativeFunction Create a function object , Set the parameters and return values of the response .
This article USES WinExec The function is called cmd In the command mkdir Directive to create a directory , See the following code for the specific implementation .
ps: You can also use c Function
system, Its prototype is as follows :
Analysis methods
Suspend startup WeGame
In order to ensure hook be-all lua, Need to suspend startup WeGame, Use command frida -f Application full path You can suspend and start the target process , Command line example :
D:\Python\Python371\Scripts\frida.exe -f "G:\Program Files (x86)\WeGame\wegame.exe"
WeGame Administrator permission is required to start , Otherwise it will be reported 0x000002e4 The startup of failed error .
hook function luaL_loadbufferx Save all js
var fnWinExec = new NativeFunction(
Module.findExportByName('Kernel32.dll', 'WinExec'),
'int',
['pointer', 'int'],
'stdcall'
);
function ez_fnWinExec(jsStr) {
console.log( 'ez_fnWinExec: ', jsStr );
var cStrPointer = Memory.allocUtf8String(jsStr);
fnWinExec(cStrPointer, 0);
}
Interceptor.attach(Module.getExportByName('Lua51.dll', 'luaL_loadbufferx'), {
onEnter(args) {
// Array deconstruction assignment is not allowed !!!
// var [_,a,b]=[0,1,3]
// var [L, buff, sz, name] = args;
var buff = args[1];
var sz = args[2];
var name = args[3];
console.log( name.readCString(), sz.toInt32(), buff );
// Filter non lua file
if (!name.readCString().endsWith('.lua')){
return;
}
var pth = 'D:\\_TMP\\wegame\\' + name.readCString();
// Create folder
var dir_ = pth.substr(0, pth.lastIndexOf('\\')+1);
ez_fnWinExec('cmd.exe /c mkdir '+ dir_);
// Save the file
var f = new File(pth, 'wb');
var data = buff.readByteArray(sz.toInt32());
f.write(data);
f.close();
},
onLeave(retval) {
}
});
At first, I thought that there was no need to call functions
WinExec, After optimization, it can be written as “ a line ” Code , Later, I found multilevel directories , You have to create your own directory , Add a pile of code ...
therefore , It is no longer “ a line ” The code implements .
Reference material
- [frida] 00_ Brief introduction and use https://blog.csdn.net/kinghzking/article/details/123225580
- Lua Introduction to game reverse and cracking methods https://blog.csdn.net/liujiayu2/article/details/81942010
- qq Group : Night owl dream chasing technology exchange skirt /953949723

**ps:** The content in this article is only used for technical exchange , Do not use for illegal activities .
边栏推荐
猜你喜欢

二叉树高频题型

【云原生】DevOps(一):DevOps介绍及Code工具使用

Oracle安装增强功能出错

Unity shader (to achieve a simple material effect with adjustable color attributes only)

面试被问到了解哪些开发模型?看这一篇就够了

JS reverse tutorial second issue - Ape anthropology first question

信息安全实验四:Ip包监视程序实现

Esp8266 uses TF card and reads and writes data (based on Arduino)

Unity shader (basic concept)
![[cloud native] Devops (I): introduction to Devops and use of code tool](/img/e0/6152b3248ce19d0dbba3ac4845eb65.png)
[cloud native] Devops (I): introduction to Devops and use of code tool
随机推荐
JS reverse tutorial second issue - Ape anthropology first question
flinkcdc 用sqlclient可以指定mysqlbinlog id执行任务吗
PostgreSQL创建触发器的时候报错,
牛客网——华为题库(61~70)
Huawei hcip datacom core_ 03day
In fact, it's very simple. It teaches you to easily realize the cool data visualization big screen
Diffusion模型详解
flex弹性布局
正则匹配以XXX开头的,XXX结束的
Jenkins automated email
Unity3d interface is embedded in WPF interface (mouse and keyboard can respond normally)
Arthas simple instructions
章鱼未来之星获得25万美金奖励|章鱼加速器2022夏季创业营圆满落幕
Database multi table Association query problem
sqlplus乱码问题,求解答
js逆向教程第二发-猿人学第一题
细说Mysql MVCC多版本控制
浏览器中如何让视频倍速播放
二叉树高频题型
MongoDB怎么实现创建删除数据库、创建删除表、数据增删改查