Has Facebook ever been safe to use?
Have I Been Facebooked?
211–220 of 230 posts
Re: Have I Been Facebooked?
#212Re: Have I Been Facebooked?
#213Earlier quoted context omitted.
In EU there's GDPR and right to be forgotten. If I forbid company to store my data they're obligated by law to remove it from their servers.
Not quite, only if the basis for processing is consent.
1(b) is 'withdrawal of consent', but note also 1(c), which refers to article 21, which allows subjects to object, and you should (as a controller) have 'compelling legitimate grounds' to continue processing (which is a higher standard than 'legitimate interests', which can be the basis for processing the data in the first place).
Re: Have I Been Facebooked?
#214I deleted my (outdated) phone number from facebook years ago and it's still part of the leak, with my name and gender in it. I did not replace the phone number with another phone number. Really says something about what delete means for fb.
Re: Have I Been Facebooked?
#215Re: Have I Been Facebooked?
#216Re: Have I Been Facebooked?
#217Earlier quoted context omitted.
I'm not surprised, the data dump was an ugly mess of inconsistently encoded data in inconsistent formats with "delimiters" that often appear in the data itself. Cleaning that up is a serious effort and requires operations on huge files that are very difficult for most software to deal with.
I don't understand how a serious effort would be required, even if the chosen delimiter being present within the data is an issue, the phone number is the first field. I can get all the phone numbers myself with a simple `cat * | cut -d ":" -f 1`
If that's literally all you want, yes, it's not that hard. But a non-trivial number of people decided to put commas or colons in their names and other nonsense like that, there are lots of commas in the hometown or location fields which makes parsing those a pain, etc.
Re: Have I Been Facebooked?
#218Earlier quoted context omitted.
we’re talking about the facebook data leak that associates a number to an identity.
We’re talking about a website that allows you to enter a number to see if it’s in a leak. People are saying you shouldn’t put a number in there because if it’s not already in there, you are leaking some kind of privileged information. That’s not true.
Re: Have I Been Facebooked?
#219Re: Have I Been Facebooked?
#220Earlier quoted context omitted.
I'm not surprised, the data dump was an ugly mess of inconsistently encoded data in inconsistent formats with "delimiters" that often appear in the data itself. Cleaning that up is a serious effort and requires operations on huge files that are very difficult for most software to deal with.
I don't understand how a serious effort would be required, even if the chosen delimiter being present within the data is an issue, the phone number is the first field. I can get all the phone numbers myself with a simple `cat * | cut -d ":" -f 1`