Earlier quoted context omitted.
My phone number is a 10-digit number, the first 3 of which are an area code. It gets spam calls and texts (though that miraculously decreased on November 4th...) as it is. Now, combined with browser fingerprinting, perhaps this site can tie my specific 10-digit number to some other aspects of who I am, but I'll leave that part as an exercise for a willing volunteer. I'm not terribly concerned about entering my phone…
2 factor sms authentication
Have I Been Facebooked?
61–70 of 230 posts
Re: Have I Been Facebooked?
#62Can someone bcrypt all these phone numbers & emails and make that public? Share the salt and then everyone can just test their own phone number without sending it to some rando
What's the difference in salting if the salt is shared? Edit: Replying again- sorry. Thinking about this some more-- if the person were to concatenate the number with first last or something they could distribute the list and the person's name would be the salt. So 9195551212JohnDoe becomes $hash and user just has to know all the pieces to test locally.
Re: Have I Been Facebooked?
#63Earlier quoted context omitted.
What's the difference in salting if the salt is shared? Edit: Replying again- sorry. Thinking about this some more-- if the person were to concatenate the number with first last or something they could distribute the list and the person's name would be the salt. So 9195551212JohnDoe becomes $hash and user just has to know all the pieces to test locally.
Habit. Prob right salt wouldn't be needed.
Re: Have I Been Facebooked?
#64Earlier quoted context omitted.
Habit. Prob right salt wouldn't be needed.
Well, maybe you were on to something-- your thoughts inspired me to think about this a little more- we just need a unique salt only the user would know.
One downside of a record-specific salt is nicknames e.g. john vs johnathan , or misspellings. (false negatives)
Re: Have I Been Facebooked?
#65Can someone bcrypt all these phone numbers & emails and make that public? Share the salt and then everyone can just test their own phone number without sending it to some rando
https://en.m.wikipedia.org/wiki/K-anonymity is likely a better approach to prevent that, which other similar sites like https://haveibeenpwned.com/ are already doing for the email addresses.
Re: Have I Been Facebooked?
#66Re: Have I Been Facebooked?
#67Anyhow, my phone number had a hit and they showed my first and last initial and corresponding asterisks; seems legit.
For people saying "why enter your phone number into random site" -- not sure how much value a phone number provides without the accompanying information.
Re: Have I Been Facebooked?
#68I'm looking forward to the sequel, "Have I Been 'Have I Been Facebooked'ed" when it turns out this is just a data harvesting operation. If you don't want your phone number leaked don't hand it over to a random website that pinky swears it won't keep it. It's maybe not a scam, but still...
exactly! They should be testing a hash of your phone number, not the number itself. Amateur hour here.
https://www.thenewseachday.com/private-facebook-phone-number...
Re: Have I Been Facebooked?
#69Can someone bcrypt all these phone numbers & emails and make that public? Share the salt and then everyone can just test their own phone number without sending it to some rando
If you bcrypt it then the site could just keep the mapping of email to hash value. Then when you do a lookup, the site would know what email you tried. https://en.m.wikipedia.org/wiki/K-anonymity is likely a better approach to prevent that, which other similar sites like https://haveibeenpwned.com/ are already doing for the email addresses.