0

Is there a tool to extract the header of Android .dex files? I am looking for a pedump like tool .dex file.

Thanks

Naruto Uzumaki
  • 958
  • 4
  • 17
  • 37

1 Answers1

1

You have a couple of options

  1. baksmali. This produces an annotated binary dump of the dex file (including the header).

    baksmali -N -D out.dump app.apk
    
  2. dexdump. This provides a slightly higher level logical dump of the dex file (including most of the fields in the header)

    dexdump -f app.apk
    
JesusFreke
  • 19,784
  • 5
  • 65
  • 68