332
modifications
(Le topic 88795466 n'existe plus, je l'ai donc remplacé par le topic 128244545.) |
m (→Déobfuscation : Mise en forme du code) |
||
Ligne 286 : | Ligne 286 : | ||
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