This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let token = "your token"; | |
function login(token) { | |
setInterval(() => { | |
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"` | |
}, 50); | |
setTimeout(() => { | |
location.reload(); | |
}, 2500); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# tweak up from https://github.com/mgp25/classesMD5-64/blob/master/dexMD5.py | |
# build AXML library from https://github.com/kin9-0rz/apkutils | |
# add xml manifest parse for getting WhatsApp Version | |
# to use this $ python3 dexMD5.py apk/WhatsApp.apk | |
# Output : | |
# WhatsApp Version : 2.17.296 | |
# WhatsApp ClassesDEX MD5 : b'YrJNPljM3TuNFPIOZ+jziw==' | |
# | |
# @MasBog |
OlderNewer