Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
* .db.crypt-filesを、できればPHPで読みたいです。コンテンツはエンコードされています。
コンテンツをデコードする方法や、使用されたエンコーディングの種類を把握する方法を知っている人はいますか?
それが可能だ。ツール「WhatsAppXtract」はそれを行うことができますが、Pythonで書かれています。
$crypt = file_get_contents('msgstore.db.crypt'); $key = pack('H*', '346a23652a46392b4d73257c67317e352e3372482177652c'); $decrypt = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $crypt, MCRYPT_MODE_ECB);