[Solved] How to secure javascript code from being run on other domain (stolen) ? need more ideas

No matter how complex you make your code, it can always be read, if necessary with abstract interpretation, i.e. automatically capturing the essence of your code. Code without knowledge of internals, variable names (I assume you’re already using minimization, for example with the YUI compressor), documentation, support, and generalization is worthless for anyone else. If … Read more

[Solved] Proguard claims to obfuscate the .apk, but does not

This worked for me in Eclipse Neon: Right click on project and add the Gradle nature File -> Export -> Android -> Generate Gradle build files In the root directory of your project, create a local.properties file and set sdk.dir. See: Where does local.properties go for android project? Right click on project -> Gradle -> … Read more

[Solved] Obfuscated code in C and what does this program code [closed]

This is an obfuscated, miniature Raytracing program. It is described on site https://mzucker.github.io/2016/08/03/miniray.html I found it by taking part of the mystery string “LJFFF%7544x^H^XXHZZXHZ”, and googling for it. If you run the compiled program and capture the output, you get a raytraced picture in .PPM format: a.out > output.ppm When I tried to run the … Read more