Skip to content

A Biometric keystroke based authentication using an outlier­based based approach

Notifications You must be signed in to change notification settings

ratatstaters/punchTimeAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

punchTimeAuth

punchTimeAuth uses the unique typing rhythm of users to enhance security. By analyzing the time intervals between keystrokes, a digital signature is generated during registration, which is then used for user authentication during login. On registration, the user will need to enter a password multiple times to generate a digital signature. This signature consists of confidence intervals for time differences between keystrokes that will be used during login to authenticate the user, providing a "free" factor authentication using the user's physiological rhythm of typing.

An outlier­based based approach was used, because it yielded the best results during our “product testing.” The method is as follows: observations from registration are used to create boundaries outside which the particular time difference is called an outlier. Then, if over 10% of these time differences are called outliers, login is refused. These boundaries are (Q1­4IQR, Q3+4IQR), where Q1 and Q3 are the first and third quartiles of the particular time difference, and IQR is the average interquartile range over all time differences. The quartiles were calculated using the seventh quantile method described in Hyndman and Fan. This is the default used by R and S.

Install

Make sure you have MongoDB installed and running on the default port, otherwise edit config.js.

npm install
npm start
#login
http://localhost:3000/

#registration
http://localhost:3000/registration

License

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A Biometric keystroke based authentication using an outlier­based based approach

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published