TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Recovering deleted records from an SQLite database

38 点作者 2510c39011c5大约 10 年前

5 条评论

mox1大约 10 年前
Incase anyone is wondering why this is useful, lots and lots of android and iOS applications (including system apps , OS functionality) use SQLite for storing all kinds of things.<p>Mobile devices forensics quickly turns into &quot;What data is in this SQLite table?&quot;
评论 #9328197 未加载
mayoff大约 10 年前
Consider using PRAGMA SECURE_DELETE = 1 if you want to make these forensics more difficult&#x2F;impossible.<p><a href="https:&#x2F;&#x2F;www.sqlite.org&#x2F;pragma.html#pragma_secure_delete" rel="nofollow">https:&#x2F;&#x2F;www.sqlite.org&#x2F;pragma.html#pragma_secure_delete</a>
killnine大约 10 年前
<a href="http:&#x2F;&#x2F;www.cyanline.com&#x2F;blog.php?entryT=Extracting%20Deleted%20Messages%20From%20An%20iPhone" rel="nofollow">http:&#x2F;&#x2F;www.cyanline.com&#x2F;blog.php?entryT=Extracting%20Deleted...</a>
gtrubetskoy大约 10 年前
The nice thing about SQLite which makes this kind of thing possible is that the file format is very well documented, for example: <a href="https:&#x2F;&#x2F;www.sqlite.org&#x2F;fileformat.html" rel="nofollow">https:&#x2F;&#x2F;www.sqlite.org&#x2F;fileformat.html</a> or <a href="https:&#x2F;&#x2F;github.com&#x2F;mackyle&#x2F;sqlite&#x2F;blob&#x2F;master&#x2F;src&#x2F;pager.c#L26" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;mackyle&#x2F;sqlite&#x2F;blob&#x2F;master&#x2F;src&#x2F;pager.c#L2...</a>
ncza大约 10 年前
Does a simple VACUUM prevent this?
评论 #9328599 未加载