Skip to content

Commit

Permalink
Auto deobfucation (--deobf flag) on decompile process using jadx (close
Browse files Browse the repository at this point in the history
  • Loading branch information
dwisiswant0 committed Mar 5, 2021
1 parent e6bcd59 commit c71a6fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apkleaks/apkleaks.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def decompile(self):
classes.write(zipped.read("classes.dex"))
except Exception as e:
exit(self.writeln(str(e), clr.WARNING))
dec = "%s %s -d %s" % (self.jadx, dex, self.tempdir)
dec = "%s %s -d %s --deobf" % (self.jadx, dex, self.tempdir)
os.system(dec)
return self.tempdir

Expand Down

0 comments on commit c71a6fe

Please sign in to comment.