i have a obfuscated lua code that i want to de obfuscate it , how do i do that? i did a bit and now im stuck with
math.randomseed(9891861);
RunString(("aab1....
i have a obfuscated lua code that i want to de obfuscate it , how do i do that? i did a bit and now im stuck with
math.randomseed(9891861);
RunString(("aab1....
That means that this code was recursively obfuscated multiply times.
First of all u need to run this code:
Then u just run ur original obfuscated code(not the one with print).Code:local rs = RunString RunString = function(s) if (string.sub(s, 1, 15) == "math.randomseed") then rs(s) else file.Append("deobfuscated.txt", s) end end
Deobfuscated code will be in data/deobfuscated.txt