تقييم الموضوع :
  • 10 أصوات - بمعدل 3.2
  • 1
  • 2
  • 3
  • 4
  • 5
مساعدة في فك تشفير اعدادات مودام 4g اتصالات الجزائر
#13
محاولة بالباثيون:
from Crypto.Cipher import AES

KEYaesCbc128 = '3E4F5612EF64305955D543B0AE350880'.decode('hex')
IV = '8049E91025A6B54876C3B4868090D3FC'.decode('hex')

AESDecrypt = AES.new(KEYaesCbc128, AES.MODE_CBC, IV)

PlaintTextFile = open("configfile.conf", "rb")
CipherText = PlaintTextFile.read()
PlaintTextFile.close

PlaintText = AESDecrypt.decrypt(CipherText)

PlaintTextFile = open("decrypted.xml", "w")
PlaintTextFile.write(PlaintText)
PlaintTextFile.close
gone
أعضاء أعجبوا بهذه المشاركة : GamingMaster , mribraqdbra , Gu-sung18 , B0u3Zizi , xdvb_dz


الردود في هذا الموضوع
RE: مساعدة في فك تشفير اعدادات مودام 4g اتصالات الجزائر - بواسطة offset - 19-02-2019, 10:59 AM

التنقل السريع :


يقوم بقرائة الموضوع: بالاضافة الى ( 5 ) ضيف كريم