Guest User

Untitled

a guest
Aug 21st, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. How to use sqlite to read data from the firefox cookies file?
  2. $ sqlite3 cookies.sqlite
  3. sqlite> SELECT * FROM dbname.sqlite_master WHERE type='table';
  4. SQL error: file is encrypted or is not a database
  5.  
  6. .mode column
  7. .headers on
  8. select * from moz_cookies where domain = '.stackoverflow.com';
Add Comment
Please, Sign In to add comment