Skip to content
This repository has been archived by the owner on Feb 5, 2021. It is now read-only.

Commit

Permalink
Move to folders, more organized
Browse files Browse the repository at this point in the history
  • Loading branch information
mgp25 committed Aug 6, 2017
1 parent 72675af commit f0bc1cc
Show file tree
Hide file tree
Showing 18 changed files with 7 additions and 5 deletions.
Binary file removed classes/obj/x86/Release/classes.exe
Binary file not shown.
12 changes: 7 additions & 5 deletions dexMD5.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
import base64

apkName = "WA.apk"
zipFile = zipfile.ZipFile(apkName,'r')
try:
zipFile = zipfile.ZipFile(apkName,'r')
hash = hashlib.md5()
hash.update(zipFile.read('classes.dex'))

hash = hashlib.md5()
hash.update(zipFile.read('classes.dex'))

print("ClassedDEX: "+ base64.b64encode(hash.digest()));
print("ClassesDEX: "+ base64.b64encode(hash.digest()));
except Exception:
print("WA.apk not found.")
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit f0bc1cc

Please sign in to comment.