file - Removing information from debug.getinfo in Lua? -
Using Debug.getinfo (numbers), people are able to see which files I am loading through luaL_dofile and which strings I run through luaL_dostring.
itemprop = "text" I am trying to secure my scripts, so how will I rescue my files and strings from debug? Getinfo?
Overriding debug.getinfo is not an option for me, unfortunately.
Try precompiling your scripts with luac -s .
Comments
Post a Comment