Hi,
I read on the net that it’s easy to unpack an APK file, then find COMPILED LUAC files, then use luadec to decompile theses files, and so having FULL access to the LUA original source files of the project !!!
So if i put my corona game on the google play store, then it’s possible for a hacker to READ not only ressource and executable files of my project, but also the real DECOMPILED LUA files ??
Please, is it true ?
If i have something like that in my code :
local KEY\_HASH = "hack3rs\_sucks!" local MY\_DATA\_TO\_PROTECT = "money:$400" local CRYPT\_RESULT = crypto.digest( crypto.sha256, KEY\_HASH..MY\_DATA\_TO\_PROTECT)
So a hacker can “easily” READ my decompiled code, so know my KEY_HASH variable and then is able to RECREATE it’s own CRYPT_RESULT ?
Please, yes or no ?
if yes, so there is no need to use crypto.sha256 or something like that, if it’s possible to read my original LUA source code, right ?