2011-04-18 124 views

回答

14

所有的Firefox cookie被存儲在 「cookie.txt的」 在

C:\Documents and Settings\Windows login/user name\Application Data\Mozilla\Firefox\Profiles\profile folder

在IE

C:\Documents and Settings\<User name>\Local Settings 

在Chrome

C:\Documents and Settings\<user name>\Local Settings\Application Data\Google\Chrome\User Data\Default\Cookies 
+0

我在VS創建Web應用程序並寫了如下代碼: - Response.Cookies [「user」]。Value =「rauf」;並使用VS2008的調試選項運行代碼。然後我搜索了上面指定的路徑,沒有找到cookie,請幫助我。 – Rauf 2011-04-18 09:30:59

+1

不正確。 Firefox 3.6.15將cookie存儲在sqlite數據庫中,並且必須使用第三方工具來提取cookies.txt。 Chrome使用一些二進制格式(可能是sqlite)。這些路徑也僅在Windows XP上有效,並且不會考慮Windows Vista/7。 – mdm 2011-04-18 09:36:55

+0

你需要使用cookie編輯器 – 2011-04-18 09:38:02

0

沒有通用的位置,完全取決於它的瀏覽器,並在某些情況下,版本(有些版本的Firefox將它們存儲在一個名爲cookies.txt的文件中,現在我認爲它在sqlite數據庫中)。

Google是你的朋友!

相關問題