PDA

View Full Version : what cookie addresses are from 2+2?


wonderwes
09-30-2005, 11:50 PM
I use firefox and I manually allow/deny each cookie request that comes on my firefox browser. Does anyone know the url sources that the 2+2 cookies come from for the forum? I want to make sure I have all allowed.

10-01-2005, 09:54 PM
w3t_mysess=
w3t_visit=
w3t_myid=
w3t_langugae=

view cookies (javascript:alert('Cookies stored by this host or domain:\n\n' + document.cookie.replace(/; /g,'\n'));)

If you drag this link up to your link bar in firefox, it will allow you to see what cookies each site is using when you click it. It doesn't seem to work properly when I try to click it from within the forum preview. It functions from the linkbar though.

StevieG
10-01-2005, 10:57 PM
In Firefox, you can also go to Tools > Options and in the popup window, go to the Privacy section. From there expand Cookies, and use the "View Cookies" button.

StevieG
10-01-2005, 10:58 PM
[ QUOTE ]

If you drag this link up to your link bar in firefox, it will allow you to see what cookies each site is using when you click it.

[/ QUOTE ]

and that's phat

10-02-2005, 01:11 AM
Then you might like this one too.
It purges all cookies from the site ur on.

EDIT: for some odd reason this jscript PREVIEWS properly as a link, but when I hit post, it shows up in metalanguage... so I'm gonna post the jscript raw, if you want to use it you have to create a link manually and put it up there on the bar:

javascript:(function(){C=document.cookie.split("; ");for(d="."+location.host;d;d=(""+d).substr(1).match(/\..*$/))for(sl=0;sl<2;++sl)for(p="/"+location.pathname;p;p=p.substring(0,p.lastIndexOf ('/')))for(i in C)if(c=C[i]){document.cookie=c+"; domain="+d.slice(sl)+"; path="+p.slice(1)+"/"+"; expires="+new Date((new Date).getTime()-1e11).toGMTString()}})()