虽然官方有备份, 但是觉得做的真是稀烂。我想了解一下如何读取 Backup.db 的内容。其路径在
~/Library/Containers/com.tencent.xinWeChat/Data/Library/Application\ Support/com.tencent.xinWeChat/2.0b4.0.9/Backup
下(来源于 V2 网友的帖子), 我尝试了 sqlite3 来读取数据, 使用.tables
命令得到一下结果:
sqlite> .tables
Error: file is encrypted or is not a database
sqlite> .schema
Error: file is encrypted or is not a database
所以请教一下如何读取这里面的数据呢?
1
kxjhlele 2017-03-07 10:48:50 +08:00
SQLCipher
|
2
douglas1997 OP @kxjhlele
Quote from stack overflow > Without the key used to encrypt the content of a SQLCipher database, you can not decrypt the content of the database. Could you tell me how to make it? And it seems there must be some way to decrypt this database. |
3
kxjhlele 2017-03-07 14:50:10 +08:00
@douglas1997 版本不匹配吧 换 2 试试
|