1
vote
1answer
16 views

Browser-upgrade-page redirect vs. privacy mode

We are doing feature detection on a site I'm building, but the client insists users with older browsers be shown an upgrade page ("sorry, your browser is outdated, please visit XYZ site to download a ...
0
votes
0answers
82 views

Auto Detect IE Privacy/Cookies Setting?

Does anyone know how I can auto detect the IE's privacy setting for cookies (the cookies slider)? It can be set at Block all cookies, high, medium-high, medium, low, or accept all cookies. I was ...
2
votes
0answers
92 views

why browsers allow setting cookie on the parent (cross) domain of an iframe?

Why can a site (a.com) having an iframe to another domain (b.com) have it's cookie viewed and changed by that other domain document? Just saw this happening in an Ad, and went to do a proof of ...
-1
votes
1answer
335 views

What is the best way to implement the new UK cookie law on websites, as a web developer using PHP or javascript etc? [closed]

What is the best way to implement the new cookie law on websites, as a web developer using PHP or javascript etc? I've been racking my brains trying to think of simple and easy to implement solutions ...
2
votes
1answer
697 views

Does a session cookie on different subdomain count as 3rd-party?

Suppose I have a site at www.example.com which has an IFRAME pointing to ASP.NET site myapp.othersite.com - this causes issues with session and 3rd-party cookies which I understand. If I moved the ...
0
votes
1answer
1k views

How to gather info similar to panopticlick.eff.org

I saw that the website http://panopticlick.eff.org/ gather info about your browser, which makes you unique, even without cookies or IP tracking. My question: Is there any public available script ...
0
votes
0answers
307 views

ico cookie compliance and IIS session ID cookies

I several classic ASP websites that use session state for maintaining login state and user preferences. The code doesnt read or write to any cookies, it just uses "session" variables which rely on ...
1
vote
1answer
174 views

Can the accessed website detect if i'm using a Virtualized like machine vmware, vbox, etc?

If i access an website, it can detect if im using a virtual machine ? More specifically an Vmware image? And if the website is able to.. How can i prevent it? Thankful, Chinchila
27
votes
6answers
2k views

What will web developers have to do to meet the new EU cookie law?

http://www.bbc.co.uk/blogs/thereporters/rorycellanjones/2011/03/cookie_madness_or_consumer_pro.html Basically it says that from May 25th this year, any website using cookies will have to ask ...
0
votes
1answer
91 views

How can I set lower level of privacy in HtmlUnit

I used HtmlUnit library (version 2.8) for scrapping but the response page let me set lower level of privacy. How can I set lower level of privacy in HtmlUnit? Thanks, Scott
2
votes
2answers
1k views

Create a compact privacy policy

I'm looking into the idea of using cookies for tracking purposes and have noticed that my current website hasn't got a compact privacy policy. I've googled it and there are ways to create them but at ...
12
votes
3answers
2k views

Why does Magento use 2 cookies per session?

For data security and privacy reasons I want to know why Magento uses two cookies for one frontend session. All I know is that one of them is being set in Mage_Core_Model_Cookie::set(..) and the ...
1
vote
1answer
1k views

Creating cookie onunload (even after deleting browser cache)

Is it possible to create a cookie after a user has deleted his/her browser cache (+cookies) entirely? E.g. Predefined variables loaded into memory var userID = 1337; var IP = 222.222.222.222; var ...
187
votes
16answers
87k views

Cookie blocked/not saved in IFRAME in Internet Explorer

I have two websites, let's say they're example.com and anotherexample.net. On anotherexample.net/page.html, I have an IFRAME SRC="http://example.com/someform.asp". That IFRAME displays a form for the ...