Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test more against baksmali #21

Open
2 tasks
austin-ralls-cs opened this issue Feb 4, 2020 · 0 comments
Open
2 tasks

Test more against baksmali #21

austin-ralls-cs opened this issue Feb 4, 2020 · 0 comments
Labels
newfeature New feature request

Comments

@austin-ralls-cs
Copy link
Member

austin-ralls-cs commented Feb 4, 2020

I've tested this against a relatively small corpus of dex files that I have lying around. It needs to be tested against way more.

  • Find collection of publicly-licensed Dex files
  • Run disas_to_files.py on them and share results

Locally I've been using

#!/bin/sh

fn=$1
[ -z $fn ] && exit 1
bn=$(basename -s .dex -s .cdex "$fn")

set -e

time java -jar baksmali.jar d --parameter-registers false -o "$bn"_baksmali "$fn"
time disas_to_files.py -o "$bn"_banjo "$fn"
diff -r "$bn"_*
@austin-ralls-cs austin-ralls-cs added the newfeature New feature request label Feb 4, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
newfeature New feature request
Projects
None yet
Development

No branches or pull requests

1 participant