Top "Deobfuscation" questions

Figuring out how a program works when that program has been deliberately made difficult to understand

Deobfuscation of minified JS with source maps

Can source maps help to deobfuscate the code that was previously minified with Closure/Uglifyjs? Are there real obstacles in …

javascript minify source-maps deobfuscation
What does "for x in y or z:" do in Python?

I'm trying to take apart and de-obfuscate this mandlebrot-generating python code: _ = ( 255, lambda V ,B,c :c and Y(V*V+…

python for-loop obfuscation fractals deobfuscation
How to deobfuscate an Android stacktrace using mapping file

I got a stacktrace from the crashreporting system and it is obfuscated, like ... Failed resolution of: Lru/test/c/b/…

android proguard obfuscation deobfuscation
Simple hiding/obfuscation of strings in APK?

Sometimes you need to store a password in the app itself, such as a username/password for communicating with your …

android obfuscation decompiling deobfuscation
Android how to read obfuscated Java code after getting through reverse engineering

I got the Java classes from an APK after using some tools like dex2jar and JD-GUI. As everybody knows …

java android obfuscation deobfuscation
How to deobfuscate jar file using mapping.txt generated by Proguard?

This may sound suspicious, but I need to deobfuscate my own app. Some time ago I published my app that …

java android proguard deobfuscation