There is a Lua script coded using the Base64 algorithm and compiled.
There is a decoding function: function base64.decode (data)
How to get the source code?
There is a Lua script coded using the Base64 algorithm and compiled.
There is a decoding function: function base64.decode (data)
How to get the source code?
Try to write more detailed questions. To get an answer, explain what exactly you see the problem, how to reproduce it, what you want to get as a result, etc. Give an example that clearly demonstrates the problem. If the question can be reformulated according to the rules set out in the certificate , edit it .
about "how to get the source code," based on the information you provided, I'm afraid it is impossible to answer.
and you can decode file.enc using the base64.decode function, for example, like this:
local input_file = io.open( 'file.enc', 'r' ) local output_file = io.open( 'file.dec', 'w' ) output_file:write( base64.decode( input_file:read() ) ) input_file:close() output_file:close() the decoded content will be written to file.dec .
Source: https://ru.stackoverflow.com/questions/526922/
All Articles