2019-11-16 06:32:26 +00:00
|
|
|
# dexdump
|
|
|
|
|
|
|
|
> Display information about Android DEX files.
|
2021-07-02 20:22:57 +01:00
|
|
|
> More information: <https://manned.org/dexdump>.
|
2019-11-16 06:32:26 +00:00
|
|
|
|
|
|
|
- Extract classes and methods from an APK file:
|
|
|
|
|
|
|
|
`dexdump {{path/to/file.apk}}`
|
|
|
|
|
|
|
|
- Display header information of DEX files contained in an APK file:
|
|
|
|
|
|
|
|
`dexdump -f {{path/to/file.apk}}`
|
|
|
|
|
|
|
|
- Display the dis-assembled output of executable sections:
|
|
|
|
|
|
|
|
`dexdump -d {{path/to/file.apk}}`
|
|
|
|
|
|
|
|
- Output results to a file:
|
|
|
|
|
|
|
|
`dexdump -o {{path/to/file}} {{path/to/file.apk}}`
|