| Mobile One Time PasswordsMobile-OTP v.1.06strong, two-factor authentication with mobile phones | |
NEW (2009-07-02): mod_authn_otp for Apache supports Mobile-OTP (see Links)
Mobile-OTP is a free "strong authentication" solution for java capable mobile devices like phones or PDAs. The solution is based on time synchronous one time passwords.
It consists of a client component (a J2ME MIDlet) and a server component (a unix shell script). The server component can easily be plugged into free RADIUS servers like XTRadius to authenticate users at routers, firewalls, web servers, access points, unix machines, etc.
On the server side you will need the shell script:
You should also download the RADIUS server found at XTRadius.
There are also token clients for iPhone and Openmoko in the Links section.
The MIDlet is also available for direct download at www.getjar.com.
To find out the offset between a token and the server, do the following:
Sebastian Korff wrote a PAM module for Linux and Solaris that can be used for login authentication locally without a RADIUS server. You do not even need otpverify.sh. The package includes the complete server components.
You can download it here. Thanks go to Per Dalgas Jakobsen for contributing to version 0.4 (see CHANGELOG for details).
Mobile-OTP is also available as a pre-compiled PAM-module for Nokia's IPSO operating system. Download the Nokia package here motp-0.2.tgz. It can be installed with 'newpkg' as any other Nokia package. Configuration can be done through the IPSO web interface Voyager!
Ralf Neumann donated a php function to authenticate Mobile-OTP tokens on web servers with PHP.
NEW (2009-06-11): iPhone token client available in the Links section
NEW (2009-06-01): PHP code to validate Mobile-OTP passwords in PHP directly (see Add-Ons)
NEW (2009-02-07): Mobile-OTP has been ported to Openmoko (see Links)
NEW (2008-11-29): changed otpverify.sh to run with /bin/ksh
NEW (2008-11-09): New version 0.4 of the PAM module in Add-Ons section
NEW (2008-04-14): New version 0.3 of the PAM module in Add-Ons section
NEW (2008-03-03): Added an icon to the MIDlet jar-file
NEW (2008-02-10): How to install the MIDlet over the air (OTA) to your phone in Downloads section
NEW (2007-02-24): New project website on extending and improving Mobile-OTP: www.freeauth.org
NEW (2007-02-24): New PAM module v0.2 in Add-Ons section
NEW (2007-02-07): mOTP+: Advanced Mobile-OTP MIDlet available in Links section (Thanks to Duane from www.cacert.org)
NEW (2006-07-14): Mobile-OTP for BlackBerry handhelds available in Downloads section
NEW (2004-06-16): New token version 1.06 with corrections of text placement on higher resolution displays. No need to upgrade, if lines do not overlap on your phone.
NEW (2004-02-04): Mobile-OTP for Nokia IP Firewalls available in Add-Ons section
NEW (2003-12-15): stand-alone Mobile-OTP PAM module in Add-Ons section
Index
Introduction
Using static passwords for authentication, as it is commonly done, has quite a few security drawbacks: passwords can be guessed, forgotten, written down and stolen, eavesdropped or deliberately being told to other people.
A better, more secure way of authentication is the so called "two-factor" or "strong authentication" based on one time passwords. Instead of authenticating with a simple password, each user carries a device ("token") to generate passwords that are valid only one time. Commercially available tokens look like pocket calculators or key fobs with a display and a keypad.
To generate a one time password, the user has to enter his personal PIN into the device. So the authentication is based on two factors: the token device and a PIN ("something you have and something you know").
This is obviously more secure than just a password, as an attacker needs to get hold of both the PIN as well as the token device. In addition, eavesdropping on a password that is valid only one time, is of no use to the attacker.
On the other hand, the drawback of strong authentication is, that every user has to be provided with a token device. This can be quite expensive.
Fortunately mobile phones that are capable of running java applets are becoming more and more widely spread. It stands to reason to use your mobile phone as an authentication token ...
The shell script should run without modification on any BSD-Unix or Linux. The java MIDlet should be compatible to any java enabled mobile phone (Nokia, Siemens, Motorola, Sony, BlackBerry, etc.).
The MIDlet, server-script and RADIUS server are freely available under the terms of GPL.
How it's done
The MIDlet generates one time passwords by hashing the following data with MD5:
When entering a PIN, the MIDlet displays the first 6 digits of the MD5-hash. This is the one time password. The password can be verified by the server, as the server also knows the current time, Init-Secret and PIN of the user.
To compensate time differences, the server will accept passwords from 3 minutes in the past to 3 minutes in the future. In addition, different time offsets can be specified for each user on the token and/or the server. Each password will be accepted only once. After 8 successive failed authentication attempts a user gets locked out.
Authentication is based on two factors: a PIN known by the user and the Init-Secret stored on the mobile device.
Downloads
On the client side you will need the java MIDlet:OTA install
Just open http://motp.sf.net/MobileOTP.jad in your phone's WAP-browser.
Just enter 2990 at their WAP-Download-Page.Source
You can also compile the java MIDlet yourself. Here is the source: MobileOTP.java. You will also need the MD5 implementation in java by Santeri Paavolainen MD5.java.
Installation
This section describes the installation and configuration of the MIDlet and the server. Installation of the MIDlet is straight forward. Installation of the server takes a little bit more time but can be done in under an hour.
Client-Installation (token)
Load the MIDlet on the devices you plan to use. Installation of the .jar and .jad file is vendor specific. Usually java enabled phones come with some kind of application installer for PCs that allows to install MIDlets over IrDA or serial cable.
When the MIDlet is installed, run it. You can enter PINs to generate one time passwords, but to use them you will need to initialize the device first and write the Init-Secret into the appropriate user-record on the authentication server.
To initialize the token, press #**#. Enter an arbitrary sequence of 20 keys as a random seed. The Init-Secret that will be shown is not to be written down anywhere else but the server itself. You cannot display it again. If you press #**# any time later, the initialization string will change, i.e. the device will be re-initialized. The initialization of a device should always be done by the administrator of the authentication server, not the user himself. A user does not need to know the Init-Secret.
Server-Installation (authentication server)
To install and configure your authentication server, take the following steps:
it should return: FAIL
FAQ
How to test if authentication works?
Before including the otpverify.sh-script into the RADIUS server, test it on the command-line:
How to synchronize server clock and token clock?
Both server and token base their time calculations on the unix epoch time (which is based on UTC), so theoretically any token should be always in sync with the server.
Unfortunately some mobile phone devices do not know which time zone they are in, so there might be in fact a difference of several hours between server and token clock.
How to trouble-shoot authentication on the RADIUS server?
After configuring the RADIUS server for external authentication through the otpverify.sh-script, you can start the RADIUS server in debug-mode by entering "radiusd -sxxy" and try to authenticate users. Use the "radtest" program for local debugging, that comes with the XTRadius distribution.
Limitations
The following limitations apply to Mobile-OTP. Not all of them are Mobile-OTP specific but are also inherent to commercial solutions.
Add-Ons
Links
Mobile-OTP on iPhone - Thomas Lederer wrote a very nice iPhone token client (shake to initialize ...)
Email Contact
For comments and suggestions send email to mobile-otp @web.de