Notifications
Clear all

Facebook chats

21 Posts
11 Users
0 Reactions
3,293 Views
Chris_Ed
(@chris_ed)
Reputable Member
Joined: 16 years ago
Posts: 314
 

Edit Right now I'm finding parts of conversations in Chrome. It's in the AppData\Local\Google\Chrome\User Data\History Index. Conversations are in clear text without any structure, it contains the name and date, that's all.

This is good news! Chrome can save plaintext versions of web pages in the "c2body" field - it's pretty handy in terms of evidence.

Do you have any experience with SQL? If so, you can export and open that History Index file (using something like SQLite Pro Enterprise Manager, which is free). The following SQL statement will get your pages, along with the time, url, and page title

SELECT info.time,
datetime(info.time/1000000-11644473600,'unixepoch','localtime'),
pages_content.c0url,
pages_content.c1title,
pages_content.c2body
FROM info,
pages_content
WHERE pages_content.docid = info.rowid

You can then export these results as a CSV (or whatever).


   
ReplyQuote
Page 3 / 3
Share: