Anyone knows how to decrypt this lua script ? https://raw.githubusercontent.com/PewPewPew2/BoL/master/DancingShoes.lua
Asked
Active
Viewed 1,130 times
1 Answers
3
That's simple a some Lua bytecode (version 5.2) stored as base64. Use base64 -d to decode it, and then check the binary file generated using file:
$ file DancingShoes.bin
DancingShoes.bin: Lua bytecode, version 5.2
tibar
- 375
- 4
- 18
-
i need to see the source code – maxstreiker May 18 '16 at 09:20
-
@maxstreiker: See http://reverseengineering.stackexchange.com/a/2050/1562 – Jason Geffner May 18 '16 at 13:45