python - Where (and what) can I find in local Google Chrome sql databses? -


i'm trying work way through book "violent python", , i'm on chapter 3... exercise walks through writing python scripts grab firefox data locally stored sql dbs - cool stuff! want see if can same chrome. i've seen on websites should able find "urls" db, can't seem figure out is.

i've found databases.db file, has tables "databases", "meta", , "sqlite_sequence". on right track here? want find things internet history, bookmarks, etc.

thanks!

if on windows you'll find sqlite db chrome history here:

c:\users\%username%\appdata\local\google\chrome\user data\default\history 

on linux:

/home/$user/.config/google-chrome/default/history 

on macos-x:

/users/$user/library/application support/google/chrome/default/history 

for more information here: http://www.forensicswiki.org/wiki/google_chrome

i advise use: http://sqlitebrowser.org/ through history file. enter image description here


Comments

Popular posts from this blog

mysql - Dreamhost PyCharm Django Python 3 Launching a Site -

java - Sending SMS with SMSLib and Web Services -

java - How to resolve The method toString() in the type Object is not applicable for the arguments (InputStream) -