📅  最后修改于: 2022-03-11 14:59:35.877000             🧑  作者: Mango
require 'sqlite3'â# Browser history db = SQLite3::Database.new "places.sqlite"â# List all tables db.execute "SELECT * FROM sqlite_master where type='table'"â# List all visited URLs (History)db.execute "SELECT url FROM moz_places"# List all bookmarksdb.execute "SELECT title FROM moz_bookmarks"â# List all Cookiesdb = SQLite3::Database.new "cookies.sqlite"db.execute "SELECT baseDomain, name, host, path, value FROM moz_cookies"â# List all form historydb = SQLite3::Database.new "formhistory.sqlite"db.execute "SELECT fieldname, value FROM moz_formhistory"