“Flash Cookies” don’t go away ?

Quoi? From a report of last weekend’s BarCamp:

Simon Willison: have you tried using Flash cookies? — doesn’t go away when clear browser cookies, also cross-browser

Don’t go away? – that’s bad. Can someone confirm this?

Comments

5 responses to ““Flash Cookies” don’t go away ?”

  1. bartb

    Nopes, flash cookies live in their own space, apart from browser cookies and they’re not integrated. You can delete them manually, as well as disabling the storage option for all sites or for specific sites. Details at http://kb.adobe.com/selfservice/viewContent.do?externalId=52697ee8&sliceId=2

  2. yes. There’s two relevant directories. This script is for a mac.

    #!/bin/tcsh
    # ok, so I’m lame for tcsh

    cd “${HOME}/Library/Preferences/Macromedia/Flash Player/”

    foreach d ( macromedia.com/support/flashplayer/sys/* \#SharedObjects/*/* )
    rm -rf “$d” && touch “$d” && chmod 400 “$d”
    end

  3. > ok, so I’m lame for tcsh

    if it was plain csh, i would laugh… but then i am a bourne-shell purist, and uprate to perl where necessary. 🙂

  4. mmm, running code. 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *