当前位置:网站首页>[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 aNativePointer
object , We can get parameter information here , Or tamper with the parameter content .onLeave(retval):
The call is completedObjective function
After treatment , Parametersretval
It's aNativePointer
object , yesObjective function
The 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、threadId
These content .
ps2: I've been tangled up before
onEnter
Variables generated in , How theonLeave
Use 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 .
边栏推荐
- Regular matching starts with XXX and ends with XXX
- iNFTnews | 时尚品牌将以什么方式进入元宇宙?
- Where is the answer? action config/Interceptor/class/servlet
- The use of recycling ideas
- JS judge whether checkbox is selected in the project
- MongoDB怎么实现创建删除数据库、创建删除表、数据增删改查
- Unity shader (basic concept)
- esp8266使用TF卡并读写数据(基于arduino)
- flinkcdc 用sqlclient可以指定mysqlbinlog id执行任务吗
- shake数据库中怎么使用Mongo-shake实现MongoDB的双向同步啊?
猜你喜欢
4、 Fundamentals of machine learning
Unity uses mesh to realize real-time point cloud (I)
Oracle installation enhancements error
Connecting mobile phone with ADB
答案在哪里?action config/Interceptor/class/servlet
Huawei hcip datacom core_ 03day
Unity shader (learn more about vertex fragment shaders)
Elaborate on MySQL mvcc multi version control
面试被问到了解哪些开发模型?看这一篇就够了
ComputeShader
随机推荐
Difference between interface iterator and iteratable
农牧业未来发展蓝图--垂直农业+人造肉
第一讲:包含min函数的栈
Impression notes finally support the default markdown preview mode
Connecting mobile phone with ADB
Strategic cooperation subquery becomes the secret weapon of Octopus web browser
Information Security Experiment 2: using x-scanner scanning tool
进程和线程的区别
Unity3d interface is embedded in WPF interface (mouse and keyboard can respond normally)
Esp8266 uses TF card and reads and writes data (based on Arduino)
Huawei HCIP - datacom - Core 03 jours
Lecture 1: stack containing min function
正则匹配以XXX开头的,XXX结束的
基于智慧城市与储住分离数字家居模式垃圾处理方法
Unittest simple project
信息安全实验三 :PGP邮件加密软件的使用
STM32 and motor development (from stand-alone version to Networking)
First issue of JS reverse tutorial
How will fashion brands enter the meta universe?
Add new item after the outbound delivery order of SAP mm sto document is created?