ELPass 加密分析

Origin at 
文件结构分解分析 Index 首先 Index 是利用了 MsgPack 压缩的,利用 Python 脚本解密 1234567891011121314# pip install u-msgpack-pythonwith open('Index', 'rb') as f:index = umsgpack.unpack(f)masterPasswordSalt = index['s']encryptedDescriptorData = index['d']encryptedDescriptorDataNonce = index['dn']version = index['v']print(len(……