ivision-research / banjo

Android Dex disassembler and Binary Ninja plugin
MIT License
52 stars 6 forks source link

Add support for other containers like APK, ODEX, etc. #11

Open austin-ralls-cs opened 4 years ago

austin-ralls-cs commented 4 years ago

This plugin only supports disassembling Dex files.

It could unzip APKs and pull out any Dex files, but that's easy to do manually, and would require code to check for and alert the user if multiple dexs are found, no dexes are found, or other dex container files are found. This doesn't seem like the right tool to do that.

Adding support for odex, cdex, vdex, or whatever else there is would require writing a whole new parser for each container type. There are other tools that can convert these types into Dex files. Again, this doesn't seem like the right tool to have this functionality in.

If you feel differently, leave a comment.