Este site irá ter funcionalidade limitada enquanto fazemos manutenção para melhorar a sua experiência. Se um artigo não resolve o seu problema e quiser colocar uma questão, temos a nossa comunidade de apoio à espera de o ajudar em @FirefoxSupport no Twitter, /r/firefox no Reddit.

Pesquisar no apoio

Evite burlas no apoio. Nunca iremos solicitar que telefone ou envie uma mensagem de texto para um número de telefone ou que partilhe informações pessoais. Por favor, reporte atividades suspeitas utilizando a opção "Reportar abuso".

Saber mais

Where are SessionCookies stored?

  • 2 respostas
  • 4 têm este problema
  • 1 visualização
  • Última resposta por cor-el

more options

Hello, I'm working on a project to extract the cookies from firefox. I can successfully extract the cookies from cookies.sqlite. Nevertheless only permanent cookies (the ones with expiry date) seem to appear there. If I do a: Select * from moz_cookies where expiry==""; nothing seems to show up.

-> If I have a look at the cookies trough firefox via Preferences -> Privacy -> "remove individual cookies" I can also see the session cookies. Therefore I want to know where these session cookies are stored in firefox (in which file) in ordert to extract them.

thx in advance


PS: I'm using firefox 23.0 UserAgent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0

Hello, I'm working on a project to extract the cookies from firefox. I can successfully extract the cookies from cookies.sqlite. Nevertheless only permanent cookies (the ones with expiry date) seem to appear there. If I do a: Select * from moz_cookies where expiry==""; nothing seems to show up. -> If I have a look at the cookies trough firefox via Preferences -> Privacy -> "remove individual cookies" I can also see the session cookies. Therefore I want to know where these session cookies are stored in firefox (in which file) in ordert to extract them. thx in advance ---------------------------------------------- PS: I'm using firefox 23.0 UserAgent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0

Todas as respostas (2)

more options

Hello funkypopcorn, try the permissions.sqlite file .

http://kb.mozillazine.org/Cookies#Where_are_cookies_stored

thank you

more options

Session cookies are kept in memory during the current session and do not need to be stored on disk in cookies.sqlite because they expire automatically. So you can't get them from places.sqlite, but only via the cookie API calls.