Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best tool(s) for decompiling Lua bytecode? [closed]

I am really having trouble finding a good working Lua bytecode decompiler. I'm trying to decompile some scripting files I found in a game but they appear to be compiled, yet don't seem impossible to decode. What's the best tool to decompile Lua binaries?

like image 495
Jonathan Prior Avatar asked Apr 13 '09 11:04

Jonathan Prior


2 Answers

It looks like LuaDec itself was last updated for Lua 5.0.2. A new version targeting Lua 5.1.x bytecode has been released as LuaDec51. The wiki is always a good place to start looking for resources as mentioned by f3lix. The mailing list is also a good place to ask.

Do note that it is relatively easy to add obfuscation or even encryption to the bytecode loader. Neither would require edits to the Lua core. If the system you are analyzing has taken any of those measures, you might have more work to do.

like image 91
RBerteig Avatar answered Sep 19 '22 18:09

RBerteig


The Lua Tools page of the lua-users.org wiki lists a couple of decompilers. Your choice will depend on which Lua version your are trying to decompile...

like image 25
f3lix Avatar answered Sep 19 '22 18:09

f3lix