Forum Moderators: coopster

Message Too Old, No Replies

On-line Cookie Test Tool?

Surely one must exist.

         

Frequent

4:17 pm on Feb 8, 2005 (gmt 0)

10+ Year Member



I would like to find a tool where I can punch in a web address and then see the number and contents of the cookie(s) that are set.

I know I could do this by clearing the cookies on my browser and then going to the site. But, I'd rather not delete my cookies and have to re-login to a hundred sites every time I want to check this.

Does anyone know of an on-line tool that can do this?

Google-ing has not turned anything up so far.

moltar

4:23 pm on Feb 8, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Site A cannot see cookies set by site B due to privacy measures.

Frequent

4:38 pm on Feb 8, 2005 (gmt 0)

10+ Year Member



Ah, yes. Thanks, I didn't think of that.

Ok, is there a command that works with most browsers that you can type into the address bar that will show just the cookies that have been set by the site you are currently on?

I seem to recall this being possible on older versions of Netscape...back when I used it.

zooloo

4:57 pm on Feb 8, 2005 (gmt 0)

10+ Year Member



Firefox has some extensions for cookies.

Try there.

zoo

dmmh

5:00 pm on Feb 8, 2005 (gmt 0)

10+ Year Member



perhaps try a: var_dump($_COOKIE);?

Sanenet

5:22 pm on Feb 8, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Under IE - View ¦ Privacy Report

Frequent

5:34 pm on Feb 8, 2005 (gmt 0)

10+ Year Member



Sanenet,

The privacy report in IE doesn't seem to reflect cookies that are set for me.

For instance it doesn't show any cookies for WW but I clearly have one set.

Cam

dcrombie

5:40 pm on Feb 8, 2005 (gmt 0)



JavaScript:alert(document.cookie);

(type in the Location bar or use as a Bookmark)

Frequent

5:46 pm on Feb 8, 2005 (gmt 0)

10+ Year Member



Perfect Dcrombie!

Exactly what I needed!

jatar_k

5:56 pm on Feb 8, 2005 (gmt 0)

WebmasterWorld Administrator 10+ Year Member



or use the cookie manager in Moz

or do

echo '<pre>';
print_r($_COOKIE);
echo '</pre>';

similar to var_dump but much easier to read