It's worth noting that the equifaxsecurity2017 website posted the following update yesterday: "NO WAIVER OF RIGHTS FOR THIS CYBER SECURITY INCIDENT In response to consumer inquiries, we have made it clear that the arbitration clause and class action waiver included in the Equifax and TrustedID Premier terms of use does not apply to this cybersecurity incident."
Note the statement by the New York State Attorney General: https://twitter.com/AGSchneiderman/status/906195350532304896 . Not enforceable.
Show HN: I'll mail Equifax your arbitration opt-out for free
81–90 of 92 posts
Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#82Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#83Earlier quoted context omitted.
What we lack, in my opinion, is a form of access control for static websites, such that they are disallowed from making any outgoing requests. The browser is in control of the site code; it should be possible to guarantee that no outgoing requests can take place. As far as I can see, it shouldn’t be difficult, but it’s possible I’m missing something — I assume the difficult part is just reaching agreement. Perhaps it…
Who would be the party who ensures the site is actually static and doesn't send data from backend?
Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#84Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#85Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#86Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#87Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#88Kind of the guy to offer. I found it interesting thinking about the issue of trust, here. He's claimed to be a certain individual, linked to social media with a long history as a proof of identity, but still had to admit that you're basically hitting up a site to solve identity theft using a tool that might help cause you more privacy problems should the individual not be who he claims to be[0]. I hope the folks at K…
What we lack, in my opinion, is a form of access control for static websites, such that they are disallowed from making any outgoing requests. The browser is in control of the site code; it should be possible to guarantee that no outgoing requests can take place. As far as I can see, it shouldn’t be difficult, but it’s possible I’m missing something — I assume the difficult part is just reaching agreement. Perhaps it…
Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#89Kind of the guy to offer. I found it interesting thinking about the issue of trust, here. He's claimed to be a certain individual, linked to social media with a long history as a proof of identity, but still had to admit that you're basically hitting up a site to solve identity theft using a tool that might help cause you more privacy problems should the individual not be who he claims to be[0]. I hope the folks at K…
What we lack, in my opinion, is a form of access control for static websites, such that they are disallowed from making any outgoing requests. The browser is in control of the site code; it should be possible to guarantee that no outgoing requests can take place. As far as I can see, it shouldn’t be difficult, but it’s possible I’m missing something — I assume the difficult part is just reaching agreement. Perhaps it…
Re: Show HN: I'll mail Equifax your arbitration opt-out for free
#90Earlier quoted context omitted.
What we lack, in my opinion, is a form of access control for static websites, such that they are disallowed from making any outgoing requests. The browser is in control of the site code; it should be possible to guarantee that no outgoing requests can take place. As far as I can see, it shouldn’t be difficult, but it’s possible I’m missing something — I assume the difficult part is just reaching agreement. Perhaps it…
Isn't that basically CORS?
To implement something like the suggestion would require two phases - one where the page was loading/updating its cache from the remote service, but was unable to look at locally stored data, and another phase, where the user is able to log in and allow access to locally stored data. Once transition has been made to the second phase network access would not be allowed. This sounds pretty involved.