Tell me more ×
IT Security Stack Exchange is a question and answer site for IT security professionals. It's 100% free, no registration required.

Over the years biometrics is the go-to movie authentication mechanism, but in the real world I'm getting conflicting opinions about it. Everything I've learned shows that biometrics are flawed because of two main reasons: they are non-revokable credentials, and they can easily be forged.

So what is the state of the nation when it comes to biometrics usage compared to other mechanisms like smart cards or OTP?

share|improve this question
2  
Oh - and other problems: the false accept and false reject rates and the crossover point mean that if you have a significant number of users it fails badly (imagine a 0.1% error rate in 50,000 users for example); and what happens if your fingerprint/retina is damaged? – Rory Alsop Jan 17 '11 at 16:45
@Rory Good point – SteveS Jan 17 '11 at 17:08
"go-to movie authn scheme" - nicely stated! It all depends on your goals and threat model. If "security theater" is your approach, biometrics are great! – nealmcb Jan 17 '11 at 17:44
@nealmcb I never considered the real world security theater use, good call. – SteveS Jan 17 '11 at 18:30
@Rory that's kind of an answer right there, it defines the "state of the nation" pretty well. – AviD Jan 18 '11 at 7:58
show 2 more comments

2 Answers

up vote 6 down vote accepted

There's a few other reasons:

  • Error rate - false accepts and false rejects are still unacceptably high for many types of biometrics.
  • User acceptance - still not widely trusted by users - the various privacy concerns are still quite high, and the idea that a part of your body is now a security mechanism is somewhat freaky for some folks.

Security best practices these days (like the CISSP certification's baseline for security practices) don't point towards Biometrics being the end-all, be-all for security. The best practice is to build a system with a collection of authentication mechanisms that are appropriate for the system, the information in it, the expected threats and vulnerabilities, and the ways that the system must be used.

I don't know that anyone could say beyond doubt what the "state of the nation" is - that's a pretty broad assertion. But I can say that common best practices don't currently force biometrics as a one size fits all solution. I'd say, at best, they are something that is still under development and treated with a certain amount of dubiousness.

share|improve this answer

Biometrics can also be forged, such as fingerprints. By contrast forging a 1024bit rsa key on a smartcard is much more difficult than a human fingerprint. However every from of authentication you add raises the bar for the attacker (and annoys your users). This is the basis of multi-factor authentication.

The most common form of two factor authentication I see in the corporate world is a Key Fob and a password. This is really good at defending against common attacks, such as obtaining a password hash from a database with sql injection and cracking it. If this where a bank vault, then yeah I would add biometrics as well. It depends what you are trying to protect.

share|improve this answer
I think the problem isnt that biometrics can be forged, so much as the fact that you leave this "credential" (i.e. your fingerprint) all over the place. It's similar to if you used the same password for all sites - including advertising it on billboards. Or, even crazier - if some form of public national id (say, SSN) were to be considered a secret identifier - even though you have to give it to everyone who asks for it. – AviD Jan 19 '11 at 9:23
@AviD♦ well being able to have the credential is meaningless unless it can be used. To make matters worse it cannot be changed. So its a 3 part problem, but I think we agree. – Rook Jan 19 '11 at 16:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.