π₯ Someone sent you a suspicious app. This free tool tears it apart and shows you every line of code inside it in seconds. No coding skills needed. π
It's called Decompiler and it's one of the most powerful free reverse engineering tools available to anyone with a browser.
Here's what it does:
Most apps and programs come as compiled files, meaning the original source code has been converted into machine language that humans can't read.
Decompiler.com reverses that process entirely.
You upload the file. It gives you back reconstructed source code - close to the original logic, minus comments, original variable names, and (in obfuscated apps) meaningful identifiers.
What you can investigate:
π± Android APK files
That sketchy app someone sent you outside the Play Store? Upload the .apk file and see exactly what permissions it requests, what data it collects, what servers it connects to and whether it contains hidden surveillance code.
π» .NET executables and libraries
A suspicious .NET-based EXE or DLL arrives in your inbox. Upload it here to see the reconstructed C# source. β οΈ Note: this only works for managed (.NET) binaries. Native Windows executables compiled from C/C , which most real-world malware is, will not decompile through this tool. For native code, use Ghidra (free, NSA) or IDA locally in a VM.
π Python scripts
Compiled Python files (.pyc) look like gibberish.
Decompiler.com converts them back to readable Python instantly.
β Java applications
Any .jar, .war or .class file decompiled back to full Java source code in seconds.
β οΈ Before you upload anything
Decompiler.com is a public web service. Do NOT upload:
- Samples you suspect are part of a targeted attack (you'll burn the indicator)
- Evidentiary material in an active investigation
- Anything attributable to your organisation
For those, use a sandboxed local install of Ghidra, JADX, or radare2. For dynamic analysis, use
any.run or Joe Sandbox.
Real OSINT use cases:
π The kind of finding analysts use this for: a "news app" circulating on Telegram during a conflict, decompiled to reveal it sends user location, contact lists, and message history to a server abroad every 15 minutes.
π Or a "privacy VPN" promoted on forums, decompiled to reveal all traffic is being routed through a single server in a jurisdiction the marketing never mentions - the opposite of what the app claims.
The app looks legitimate on the outside. The code tells the truth.
Go to
decompiler.com
Drag any suspicious file onto the page
Read exactly what it was designed to do
π¬ Have you ever decompiled an app and found something it wasn't supposed to be doing?
π Bookmark this - before you install any suspicious app or run any unknown file, upload it here first.
#OSINT #Decompiler #BeginnerOSINT #DigitalForensics