19-02-2019, 10:59 AM
محاولة بالباثيون:
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