Top "Obfuscation" questions

Obfuscation is the process by which the code is altered so that a developer finds it much harder to understand clearly what the intended program does or how it operates.

What are JavaScript's builtin strings?

this question is difficult to summarize in a question title UPDATE I created a JSFiddle that builds an obfuscated string …

javascript obfuscation
How to change the proguard mapping file name in gradle for Android project

I have android project based on gradle and I want to change mapping.txt file name after it's generated for …

android gradle proguard obfuscation
Android Proguard Javascript Interface Fail

I use in my project a piece of code as described here http://lexandera.com/2009/01/extracting-html-from-a-webview/ I create the .apk …

java android proguard obfuscation
How to configure proguard for javascript interface?

I have a implemented a Webview which takes use of JavascriptInterface. It's working fine when not obfuscating, but at once …

android obfuscation proguard
This obfuscated C code claims to run without a main(), but what does it really do?

#include <stdio.h> #define decode(s,t,u,m,p,e,d) m##s##u##t #define begin …

c c-preprocessor obfuscation
Using UglifyJs on the whole Node project?

I need to obfuscate my source code as best as possible so I decided to use uglifyjs2.. Now I have …

node.js obfuscation uglifyjs uglifyjs2
difference between uglify and obfuscate? Is one more safe?

Recently I was asked to obfuscate my javascript in order to hide a client's api key. I'm using grunt. Will …

javascript gruntjs obfuscation uglifyjs deobfuscation
C/C++ compiler generating obfuscated code

Is there any known C/C++ compiler generating obfuscated/noised code? Or maybe any patch for open-source C/C++ compiler …

c++ c compiler-construction obfuscation
Ruby obfuscator

Is there a ruby obfuscator or "compiler"?

ruby obfuscation
To preallocate or not to preallocate lists in Python

When should and shouldn't I preallocate a list of lists in python? For example, I have a function that takes 2 …

python list obfuscation allocation