Accessing FireFox Cookies using SQLLite Database Browser(cookies.sqlite)

Get the cookies.sqlite path

C:\Users\username\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxxx.default\cookies.sqlite

C:\Users\SiloSix\AppData\Roaming\Mozilla\Firefox\Profiles\5zk1kyyg.default\cookies.sqlite

  • Open DatabaseBroswer
  • Add DB
    • DB Type: SQLite
    • Connection Name
      • FireFox Cookies DB
    • Location:  C:\Users\username\AppData\Roaming\Mozilla\Firefox\Profiles\xxxxxxxx.default\cookies.sqlite
  • SQL
select * from moz_cookies where baseDomain = '192.168.0.103'

id    baseDomain    originAttributes    name    value    host    path    expiry    lastAccessed    creationTime    isSecure    isHttpOnly    inBrowserElement    sameSite
979784    192.168.0.103        pma_lang    en    192.168.0.103    /phpMyAdmin/    1531522690    1024537552    -356757672    0    1    0    0
979785    192.168.0.103        pma_collation_connection    utf8_unicode_ci    192.168.0.103    /phpMyAdmin/    1531522690    1024537552    -356756672    0    1    0    0
981039    192.168.0.103        SESS4f6271094179919a61cc9ed195a16fcc    ZN4oIUC6JaW8bVg2X5xd0KhWKVPiG_kTTSSouovwuDE    192.168.0.103    /    1530948344    -528436928    -593203855    0    1    0    0
981143    192.168.0.103        pmaUser-1    %7B%22iv%22%3A%22z7PU7aB13ZVg5znmdJtXdQ%3D%3D%22%2C%22mac%22%3A%22fa3967cbccd1282bca71332ef441728ce8786059%22%2C%22payload%22%3A%22JrxEyR%5C%2F83a2pPqM6m4hyMg%3D%3D%22%7D    192.168.0.103    /phpMyAdmin/    1531541095    1024537552    799421328    0    1    0    0
981709    192.168.0.103        jenkins-timestamper-offset    18000000    192.168.0.103    /    1592048571    -528436928    -1720966928    0    0    0    0
981710    192.168.0.103        jenkins-timestamper    system    192.168.0.103    /    1592048572    -528436928    -1720577928    0    0    0    0
981711    192.168.0.103        jenkins-timestamper-local    true    192.168.0.103    /    1592048572    -528436928    -1720577927    0    0    0    0

 

Tags