332
modifications
m (→Forums : Pluriel) |
(Clé) |
||
Ligne 268 : | Ligne 268 : | ||
from Crypto.Cipher import AES | from Crypto.Cipher import AES | ||
from passlib.utils.pbkdf2 import pbkdf2 | from passlib.utils.pbkdf2 import pbkdf2 | ||
cle = 'package com.jeuxvideo.activity' | cle = 'package com.jeuxvideo.activity' | ||
cle = AES.new(pbkdf2(cle, cle, 10, 128/8, 'hmac-sha1')) | cle = AES.new(pbkdf2(cle, cle, 10, 128/8, 'hmac-sha1')) | ||
string = 'D034ED0612F7607C179BC66894A71654' | string = 'D034ED0612F7607C179BC66894A71654' | ||
string = cle.decrypt(string.decode('hex')) | string = cle.decrypt(string.decode('hex')) | ||
print repr(string[:-ord(string[-1])]) | print repr(string[:-ord(string[-1])]) | ||
Modifiez la clé selon l'application que vous décompilez : | |||
* Pour l'application Jeuxvideo.com 2.5, c'est ''package android.content'' | |||
* Pour l'application Jeuxvideo.com 2.3, c'est ''package com.jeuxvideo.activity'' | |||
* Pour l'application Jeuxvideo.com MP 1.0, c'est ''package com.jeuxvideomp.activity'' | |||
== Liens externes == | == Liens externes == | ||
Ligne 287 : | Ligne 291 : | ||
* [http://android-applications-gratuites.com/wp-content/uploads/2012/10/com.jeuxvideomp-1.apk L'APK de l'application Android des MP (version 1.0)] | * [http://android-applications-gratuites.com/wp-content/uploads/2012/10/com.jeuxvideomp-1.apk L'APK de l'application Android des MP (version 1.0)] | ||
[[Catégorie: Extensions et outils]] | [[Catégorie:Extensions et outils]] |
modifications