eluck / meteor-accounts-lockout

Meteor package for locking user accounts and stopping brute force password attacks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Accounts-lockout package

What it is

Seamless Meteor apps accounts protection from password brute-force attacks. Users won't notice it. Hackers shall not pass.

you-shall-not-pass

Use

Locks user accounts for duration seconds after them having entered wrong passwords attempts times in a row. duration = 15 and attempts = 5 by default and can be overriden in settings file:

"accounts-lockout" : {
  "duration": 5,
  "attempts": 10
}

The package is designed to live in multiple servers environment and survive servers restarts.

Install

meteor add eluck:accounts-lockout

Youtube video with a usage example

http://youtu.be/X-_Yd-rh1KY?hd=1

Github repository

https://github.com/eluck/meteor-accounts-lockout

About

Meteor package for locking user accounts and stopping brute force password attacks

License:MIT License


Languages

Language:CoffeeScript 64.6%Language:JavaScript 35.4%