29

I was signing into a Capital One credit card website that I hadn't used in a long time, and once I entered my user name and password, it requested my mobile phone number for additional verification.

I entered my number, and I was given a short, < 10 second waiting screen that said "We are contacting your carrier to verify your phone number". It passed whatever that validation was and then sent me a typical text-message verification code that I had to enter to continue.

So, my question is, did they really contact my mobile phone carrier to verify my name or address (the only thing they know about me) based on my phone number? Is this just security theater, or is there an API or database available where I can verify that a phone number does indeed have a certain name attached to it?

I've never seen this before and would like to understand how this system works, and how it's protected from abuse.

4
  • my guess is the call display registry
    – schroeder
    Commented Jan 24, 2018 at 17:01
  • 2
    I'm sure there is some kind of security measure taken place when the phone number is identified. It either just verifies with previous login attempts to see if you are using the same device, if you are using a foreign device it will probably ask for further verification (code sent to email or something). Seeing as Capital One is a major financial company, I wouldn't put it past them to verify with service providers but It's probably just a security measure where they need to collect a certain amount of info to identify who is accessing your financial information.
    – WatchDog
    Commented Jan 24, 2018 at 17:05
  • My guess would be something like this to get rid of virtual numbers -> twilio.com/lookup
    – jrtapsell
    Commented Jan 24, 2018 at 18:34
  • 1
    It may not be this, but the carriers are pretty willing to give data to anyone who pays, it'd seem: techcrunch.com/2017/10/15/…
    – ceejayoz
    Commented Jan 24, 2018 at 19:13

4 Answers 4

16

Is this just security theater

No.

or is there an API or database available where I can verify that a phone number does indeed have a certain name attached to it?

The phone companies (ed: didn't used to, but apparently now they do per @ceejayoz) make this information public (caller registry is not reliable, esp. in cases where the name on the bill isn't the owner of the phone), but given the wealth of information marketing agencies and credit bureaus hoard, the information is absolutely out there-- it's just a question of whether anybody is selling it yet. Hell, even Facebook could offer such a service if they were so inclined.

But given what I've dealt with in this space in years past, it's more likely they're checking to verify the carrier itself. Fraudsters using burner phones to abuse OTP systems was a massive, massive problem that had yet to be solved while I was still there and we didn't have a reliable way to filter them out at the time-- yet simply knowing if we were dealing with a Verizon or Boost Mobile customer and performing additional verification for the latter before sending out texts would have eliminated a significant amount of fraud.

7
  • So, you're saying they could just verify that the number is a valid, in-use number?
    – JPhi1618
    Commented Jan 24, 2018 at 18:28
  • No, the additional verification would come in the form of 3FA or doing something else to make sure you didn't just squat on someone's phone number after they let it go and are now trying to impersonate them.
    – Ivan
    Commented Jan 24, 2018 at 19:02
  • 1
    you mean "hoard"
    – Almo
    Commented Jan 24, 2018 at 19:36
  • Just to add to this. In Australia at least, there's a national database of all active phone numbers. It's often used by emergency services to locate people if they call and hang up or don't provide details. So I wouldn't see verification as being entirely implausible.
    – Kit
    Commented Jan 25, 2018 at 5:34
  • Given the amount of information you can get via SS7 I would not be surprised that it spits out your name somewhere too.
    – PlasmaHH
    Commented Jan 25, 2018 at 13:10
6

Number verification

Following the conversation in the comments:

jrtapsell: My guess would be something like this to get rid of virtual numbers -> https://www.twilio.com/lookup

JPhi1618: @jrtapsell, cool. I looked into Twilio once upon a time for SMS sending, but didn't know they had this service. My name does come up when I enter my number, so it's at least plausible.

They may just be trying to filter out virtual numbers and high risk carriers using a service like Twillio, although their site seems to suggest that in the US you can get the user's name:

Many local phone numbers in the U.S. register with a central Caller ID Name (CNAM) database. This database contains identity information about the business or person associated with the number. Use CNAM Lookup to programmatically return that identity information for each phone number. The calls you make and messages you send are more informed so you don’t get bogged down with upfront questions.

Trying to get the name for my number came back with nothing though, so YMMV, but they seem to suggest that you can reduce fraud by flagging virtual numbers here:

While phone numbers help businesses identify end users, the fact is numbers are very easy to acquire from some carriers. Anyone can obtain multiple phone numbers from a free online provider, enabling them to create fake profiles to defraud or spam a business. To address this challenge, businesses can identify the carrier behind the phone number. This way businesses can require additional identity authentication for carriers associated with higher fraud instances for $0.005 per lookup.

They may also be using a local search, and if the same number is used for multiple accounts they may be flagging it, so if a fraudster uses the same number to try to access different accounts they can be caught, Amazon has been known to do a similar thing but with credit card numbers.

2

A high risk call might get flagged for additional verification, and a score calculated from a 3rd party service that knows all about you.

Here's one... https://risk.lexisnexis.com/products/phone-finder

3
  • 1
    What is a high risk call? And what score?
    – Tom K.
    Commented Jan 25, 2018 at 9:08
  • Any number of reasons your call might be considered higher than average risk. The OP is not clear whether it's the credit card, or the website he hasn't used in a long time, but a stagnant card could be one indicator. The most common case is an account that has already been identified as the target of fraud or attempted fraud, so anyone attempting to access that account is going to be subjected to additional ID verification.
    – wwwmarty
    Commented Jan 26, 2018 at 22:57
  • The score from the service might be a probability% that the phone you are calling from (and is ostensibly in your possession) belongs to you, and that you are who you say you are.
    – wwwmarty
    Commented Jan 26, 2018 at 22:59
2

Ignoring the obvious two factor (i.e. that the number is in your possesion), there are databases they use for prooving your identity. The big ones are people like Experian who look like Credit score agencies when they're not doing identity checks, and because most phone contracts are a source of credit, its a good way of finding out.

Basically there are companies out there who buy data from other companies and cross reference. So you say to someone "I am Joe Smith living at 123 Main street and a phone number of +0011231234567" and it gives you back a probability of being right.

Have a look at (for example): https://developer.experian.com/real-time-contact-data-validation/apis/post/sync/QueryResult/PhoneValidate/3.0 (bearing in mind this is on a sandbox, so might be random answers rather then real).

Basically the Banks and other financial institutions (including insurance etc) share information on you which can then be used to reduce fraud across the entire industry.

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .