Global web icon
stackoverflow.com
https://stackoverflow.com/questions/194397/how-can…
How can I obfuscate (protect) JavaScript? - Stack Overflow
I want to make a JavaScript application that's not open source, and thus I wish to learn how to can obfuscate my JS code? Is this possible?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/3344115/how-to…
How to obfuscate Python code effectively? - Stack Overflow
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.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/29399/is-using…
Is using an obfuscator enough to secure my JavaScript code?
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.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2537568/best-j…
obfuscation - Best Java obfuscator? - Stack Overflow
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 ?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/2124121/how-to…
How to obfuscate Java code quickly? - Stack Overflow
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...
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/22732908/how-c…
How can I obfuscate a Lua program? - Stack Overflow
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.
Global web icon
roblox.com
https://devforum.roblox.com/t/the-guide-for-obfusc…
The guide for Obfuscation - Community Tutorials - Roblox
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.
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/871566/why-do-…
obfuscation - Why do you obfuscate your code? - Stack Overflow
Have you ever obfuscated your code before? Are there ever legitimate reasons to do so?
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/37649620/does-…
Does Chrome Market accept extensions with minified and/or obfuscated ...
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).
Global web icon
stackoverflow.com
https://stackoverflow.com/questions/72689586/how-t…
How to properly obfuscate code in android studio? - Stack Overflow
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,