# Ofuscación / Desofuscación

## Ofuscación

* [ProGuard](https://github.com/Guardsquare/proguard)
* [DexGuard](https://www.guardsquare.com/dexguard)
* [LSParanoid](https://github.com/LSPosed/LSParanoid)

## Desofuscación

* [DeGuard](http://apk-deguard.com/)
* [Paranoid/LSParanoid](https://github.com/giacomoferretti/paranoid-deobfuscator)

```sh
apktool d application.apk -o app-decompiled
paranoid-deobfuscator -v deobfuscate app-decompiled
apktool b app-decompiled
jadx-gui app-decompiled/dist/application.apk
```
