Skip to content

Instantly share code, notes, and snippets.

@merlinxcy
Created December 16, 2019 02:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save merlinxcy/65d172b79f4358ab212a68cd77627b7b to your computer and use it in GitHub Desktop.
Save merlinxcy/65d172b79f4358ab212a68cd77627b7b to your computer and use it in GitHub Desktop.
reverse the dex history
root@kali:~/temp# cat test.sh
#!/bin/sh
for i in `ls *.jar`;do
~/tools/jadx/bin/jadx -d out-$i $i
echo $i
done;
root@kali:~/temp# cat test2.sh
#!/bin/sh
for i in `ls *.dex`;do
~/tools/jadx/bin/jadx -d out-$i $i
echo $i
done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment