332
modifications
(→Reverse-engineering : Mise à jour) |
(→Déobfuscation : espaces) |
||
Ligne 276 : | Ligne 276 : | ||
from Crypto.Cipher import AES | from Crypto.Cipher import AES | ||
from passlib.utils.pbkdf2 import pbkdf2 | from passlib.utils.pbkdf2 import pbkdf2 | ||
cle = 'package android.content' | cle = 'package android.content' | ||
cle = AES.new(pbkdf2(cle, cle, 10, 128/8, 'hmac-sha1')) | cle = AES.new(pbkdf2(cle, cle, 10, 128/8, 'hmac-sha1')) | ||
string = '290B2FB20CFD682C120BBBFFFE5928D9' | string = '290B2FB20CFD682C120BBBFFFE5928D9' | ||
string = cle.decrypt(string.decode('hex')) | string = cle.decrypt(string.decode('hex')) |
modifications