1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.fr/common/androguard.md
2022-07-20 14:40:29 +02:00

16 lines
502 B
Markdown

# androguard
> Outil d’ingénierie inverse pour les applications Android. Écrit en Python.
> Plus d'informations : <https://github.com/androguard/androguard>.
- Affiche le manifest d'application Android :
`androguard axml {{chemin/vers/app.apk}}`
- Affiche les métadonnées de l'application (version et id d'application) :
`androguard apkid {{chemin/vers/app.apk}}`
- Décompile le code Java de l'application :
`androguard decompile {{chemin/vers/app.apk}} --output {{chemin/vers/dossier}}`