ljd icon indicating copy to clipboard operation
ljd copied to clipboard

LuaJIT raw-bytecode decompiler

Results 9 ljd issues
Sort by recently updated
recently updated
newest added

Hello i try to decompile the lua file with lua readble from human but when insert the code with input-outpu and more show this error why? ![new2](https://user-images.githubusercontent.com/74472734/99442870-45b04300-291a-11eb-9279-50aef0a9210d.png)

用@zzwlpx改过的版本反编译 PS F:\ctf\njupt\ljd-master> py -3 .\main.py .\rua_decode.lua Traceback (most recent call last): File ".\main.py", line 126, in retval = main() File ".\main.py", line 86, in main ast = ljd.ast.builder.build(prototype) File...

luajit ios64 bytecode is not support?

Hello. If tried to decompile bytecode files from FS15. But just getting any KeyError. Do you have any suggestion? Hopefully Blue Text from Commandpromptscreen: Traceback (most recent call last): File...

- Predefines _varinfo in case of missing debug info (needed for update_locals) - Copies header flags to parser flags (was missing) - Fixes typo for unknown bytecodes

scripts in the test directory were compiled using LuaJIT 2.0.3 output: http://pastebin.com/NZ7Bpz5c

Hi NightNord, I am having a little trouble decompiling a file from the current 3.0 release of Egosofts X-Rebirth (/ui/addons/ego_detailmonitor/menu_trading_offers.xpl). The decompiling process fails with the following error. ``` lua...

``` $ python3 main.py foo.luac Traceback (most recent call last): File "main.py", line 123, in retval = main() File "main.py", line 77, in main header, prototype = ljd.rawdump.parser.parse(file_in) File "/Users/agladysh/projects/ljd/ljd/rawdump/parser.py",...

``` ------------------------------ ljd/lua/writer.py ------------------------------ index dede627..2416648 100644 @@ -287,19 +287,19 @@ class Visitor(traverse.Visitor): self._write(" + ") elif node.type == nodes.BinaryOperator.T_SUBTRACT: self._write(" - ") elif node.type == nodes.BinaryOperator.T_DIVISION: - self._write("/") +...