I am looking for how to hide my Python source code. print "Hello World!" How can I encode this example so that it isn't human-readable? I've been told to use base64 but I'm not sure how.
0 A obfuscator won't help you at all if someone wants to figure out the code. The code still exists on the client machine and they can grab a copy of it and study it at their leisure. There is simply no way to hide code written in Javascript since the source code has to be handed to the browser for execution.
I am developing a security software and want to obfuscate my java code so it will become impossible to reverse engineer. What is the most reliable java obfuscator ?
How to obfuscate code quickly. I have a very small Java App and I want to deliver the obfuscated code to my client. I have heard a lot about ProGuard to obfuscate code and have downloaded it but do...
I want to encrypt/obfuscate my lua files. I have made a simple game in lua now and I don't want people to see the code, otherwise they can easily cheat. How can I make the whole text inside the .lua file to just random letters and stuff? I used to program in C# and I had this .NET obfuscator called SmartAssembly which works pretty good.
Obfuscating your code just makes people lose their trust for your code, because the most common reason for obfuscation is to hide malicious code, therefore they think that your code is malicious.
This is email I received from Google Chrome Team: All of the files and code are included in the item’s package. All code inside the package is human readable (no obfuscated or minified code). Avoid requesting or executing remotely hosted code (including by referencing remote javascript files or executing code obtained by XHR requests).
I am trying to obfuscate the debug build in android studio Chipmunk (buildToolsVersion "30.0.3", compileSdkVersion 32, targetSdkVersion 32, gradle:7.2.1). I have the following code in my build.gradle file,