.vce equivalent open format?

六月ゝ 毕业季﹏ 提交于 2019-12-31 12:12:13

问题


I'm trying to write my own vce reader (Visual Cert Exam). But .vce is a binary format.

Does exist any way to decode the format? Otherwise, does exist any other equivalent open format?


回答1:


So... this question is rather old and I have recently (a few hours over 2 days of investigation so far) been working on this same issue. The .vce file contains a sqlite database file which is encrypted using AES-256-CBC. It can apparently be read using the libsqlcipher library which is partly what has gotten me this far.

Really this leaves only 2 missing puzzle pieces. The offset of the start of the encrypted data and the encryption key. As for the key, it is either static for all files and or it is generated based on static information about or contained within the plaintext data of the file. Both of these pieces of information can be found by using reverse engineering. Once these are found it should be trivial to read and write to vce files.

UPDATE: There is a public key contained in the player.exe and designer.exe which are used for reading. The designer also contains a certificate presumably for encryption.




回答2:


An equivalent open format doesn't exist



来源:https://stackoverflow.com/questions/950882/vce-equivalent-open-format

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!