IE and Windows keeps cookies here:
%AppData%MicrosoftWindowsCookies
Points to the same directory as @Sohnee's does under Windows Visa and newer, but his doesn't under Windows XP and earlier, my - does.
also Temporary Internet Files
can contain some cookies.
Meanwhile Firefox keeps cookies into SQLite database under profile root:
%AppData%MozillaFirefoxProfiles\%FirefoxProfile%cookies.sqlite
To read the data you need to connect to that database using any SQLite client and execute next query:
select value
from moz_cookies
where name = 'test'
I did it just now using trial SQLite Maestro. And don't forget to close all running Firefoxes before connection attempt.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…