Is it really impossible to protect Android apps from reverse engineering?

JavaAndroidReverse EngineeringDecompiling

Java Problem Overview


As we know, Android apps are written in Java. In Java, no matter what you do, it is impossible to protect compiled code from decompilation or reverse-engineering, as the Stack Overflow question How to lock compiled Java classes to prevent decompilation? suggests.

How would one go about protecting an app that contains algorithmic trade secrets from reverse-engineering?

By "how" I mean not only software techniques, but also other creative approaches.

Java Solutions


Solution 1 - Java

The first stop for me would be to optimise and obfuscate the code with ProGuard which is known to work with byte code targeted at Android's Dalvik VM (via Dex). It's a really great tool and can increase the difficulty of 'reversing' your code while shrinking your code's footprint (in some cases dramatically: a recent applet of mine went from about 600 KB down to about 50 KB).

Like others are saying, you will never get 100% security of your algorithm's details while its implementation is being distributed to clients. For that, you'd need to keep the code on your servers alone. Attempts to near 100% percent security for client code effectively amount to DRM and can make your client code fragile in the face of network outages and just generally frustrate (legitimate) users.

The Android developers blog has some useful articles on the matter of 'tamper resistant' Android apps (and they recommend the use of ProGuard as part of the overall approach).

With regards to 'creative' approaches: some developers employ debugger detection techniques to prevent run-time analysis and combine this with encryption of portions of binary code (to deter static analysis), but to be honest, a determined enough attacker can circumvent these, while it can cause legitimate user frustration as illustrated by the Windows KB article Games: Error Message: A Debugger Has Been Detected: Unload the Debugger and Try Again. My girlfriend's 'Learn to drive' DVD software will not run under VirtualBox for this reason, but she blames Linux of course!

OpenRCE and Wikipedia's article on obfuscated code may be good starting points if you want to look into this further. But be warned, you may lose more through over zealous use of these techniques frustrating your users than you would through loss of trade secrets by reverse engineering. Like Anton S says, maybe the most 'creative' approach lies with tweaking the business model rather than the technology.

The latest Android SDK update on 6th Dec 2010 (coinciding with Android 2.3 Gingerbread release):

> Integrated ProGuard support: ProGuard is now packaged with the SDK Tools. Developers can now obfuscate their code as an integrated part of a release build.

Solution 2 - Java

If it's a possibility: remote procedure calls to a well-protected server (the server has the code you want to protect).

Solution 3 - Java

Make it so cheap to bother and don't build your business model on top of secrets that are executed on the client side. In other words, don't share your secrets.

Solution 4 - Java

It is impossible to protect any client side code from reverse engineering. You can just use more or less efficient ways of obfuscating your code. And optimized x86 assembler happens to be a pretty good obfuscation.

So if you have algorithmic secrets put them on the server-side.

Solution 5 - Java

> How to lock compiled Java Classes to prevent decompilation

You can't. Any scheme can be defeated by someone with sufficient skills, time and motivation.

(Incidentally, this also applies to software that is compiled to binary. The only difference is in the amount of effort involved in decompiling.)

> My question is how one would go about protecting an app that contains algorithmic trade secrets from reverse-engineering?

Simply don't install the app on the user's phone. Or (more usefully), run the code that contains the trade secrets on a remote (properly secured) server.

Solution 6 - Java

You can't protect your application completely, as there will always be someone who will crack it...

However you could hinder them doing this by making your application free, or at least dirt cheap so people won't be bothered.

Alternative, try to keep your Android application "dumb", as in keep all the secretive business logic on a backend server, and just have you app display data using some form of exposed service.

Solution 7 - Java

No matter what you do, maybe at least you can make it very hard to decompile, but: If something gets executed/calculated in a program, the information about the algorithm has to be there, and there will always be a possibility to find out how to get that (enough skill and motivation on you opponents side assumed). Always.

Solution 8 - Java

I have my algorithm on a server and I invoke that service from my smartphone app. A perpetrator can reverse engineer my smartphone app to see my protocol with my server. I can protect my algorithm but I can not protect against unauthorized use of my service. I have to accept this reality without a solution. I have to be content that as long as I am making money with my own service, then I have to live with the potential of others siphoning my service.

Solution 9 - Java

You want a creative approach, here's one.

What is the main program on phones that haven't been decompiled today? Radio firmwares. Why? It doesn't run on the ARM chipset of the phone but instead on a separate Qualcomm Hexagon that is more and more present in smartphones. It's not x86, it's not ARM, it uses a Qualcomm proprietary architecture and instructions.

  • Java decompilation is easy.

  • ARM decompilation is more difficult (Hex-Rays Decompiler licences start at 1129 USD... and the mix between thumb code and standard ARM code in binaries is a pain) => you could try compiling with the Android NDK.

  • There is currently no Hexagon decompilers! And QDSP specifications are not publicly available, even pirated versions.

Question is, can an independant software vendor use the Hexagon firmware included in the mass-market phones? It seems to be the direction Qualcomm takes. Check out their website and the SnapDragon products.

NB: I'm not pro-Qualcomm nor pro-closed-source. But this thread appeals to this kind of solution.

Solution 10 - Java

You can't 100% secure you android code from reverse engineering. If you want to secure some key then you can take help from integrating server that give you encrypted key while calling web service and use that key into your code.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAndroid EveView Question on Stackoverflow
Solution 1 - JavawilljcrozView Answer on Stackoverflow
Solution 2 - Javajcomeau_ictxView Answer on Stackoverflow
Solution 3 - JavaAnton SView Answer on Stackoverflow
Solution 4 - JavaCodesInChaosView Answer on Stackoverflow
Solution 5 - JavaStephen CView Answer on Stackoverflow
Solution 6 - JavaJimmyView Answer on Stackoverflow
Solution 7 - JavaoeziView Answer on Stackoverflow
Solution 8 - JavaDavidView Answer on Stackoverflow
Solution 9 - JavaKrisWebDevView Answer on Stackoverflow
Solution 10 - JavaMuhammad NomanView Answer on Stackoverflow