I saw decodeing a luraph script in 2015
The Old topic
I tried This Site (warning not https) to resolve Luraph script,
But Can’t resolved how Can I resolve? This scripts…
I saw decodeing a luraph script in 2015
The Old topic
I tried This Site (warning not https) to resolve Luraph script,
But Can’t resolved how Can I resolve? This scripts…
What do you mean by ‘resolve’? What exactly are you trying to do?
Don’t trust what that topic says, he claims a hex decoder will decode the script but thats false. These obfuscation methods are basically making their own bytecode (basically machine language) and when decoding it, you won’t get anything similar to print(“hello”).
If you want to decode a script, you wont be able to get full source unless you spend all your time converting the bytecode into readable code. What you should do is look for key flaws in it to get what you need out of it.
Some tips are to replace the variables at the top of the script, for example:
local luraph = string.sub
can be changed to
local luraph = function(...)
print(...)
return string.sub(...)
end
to print out what it hides, which in most cases can be things like Constants (variable names etc.)
Best of luck