Reversing Lua
Lua is a lightweight embeddable scripting language that is commonly used in a variety of applications. Because Lua has C bindings, it is very easy to embed. As a result of this, Lua is widely used in many applications(especially games). - Reversing Lua’s C API / r/lua
First bytes of the compiled Lua file tell the version where the script was compiled in. The Lua bytecode is not stable between versions, you’ll need to know which version of Lua they were compiled against.
Written on February 18, 2023, Last update on February 18, 2023
reverse
lua