plz,help me
lua decrypt and encrypt......thank you very much!
lua decrypt and encrypt
-
- Posts: 165
- Joined: Wed Aug 13, 2014 10:00 am
Re: lua decrypt and encrypt
They are not encrypted, only compiled. For decompilation you can use unLuac.
-
- Posts: 26
- Joined: Fri Mar 20, 2015 2:04 pm
Re: lua decrypt and encrypt
i used the unluac,but error....
-
- Posts: 62
- Joined: Sun Feb 01, 2015 5:31 pm
Re: lua decrypt and encrypt
wahaha wrote:i used the unluac,but error....
Hi,
Well, I've been testing your files and i think that are compressed with version of lua 5.1, this program works correctly.
Use:
java -jar unluac.jar avalist.lua > avalist.txt
greetings.
-
- Posts: 26
- Joined: Fri Mar 20, 2015 2:04 pm
Re: lua decrypt and encrypt
thanks,it work well,but it dont surport the chinese characters.
-
- Site Admin
- Posts: 12984
- Joined: Wed Jul 30, 2014 9:32 pm
Re: lua decrypt and encrypt
You can use this quickbms script to make the decompiled lua script readable:
http://aluigi.org/papers/bms/unescape_strings.bms
It looks like the decompiler cannot make the difference between text and binary strings so it preferes to consider them binary and using the hex notation for the non-printable chars.
http://aluigi.org/papers/bms/unescape_strings.bms
It looks like the decompiler cannot make the difference between text and binary strings so it preferes to consider them binary and using the hex notation for the non-printable chars.
-
- Posts: 26
- Joined: Fri Mar 20, 2015 2:04 pm
Re: lua decrypt and encrypt
yes,all ok,thanks again!