GithubHelp home page GithubHelp logo

jeroenj / password_strength Goto Github PK

View Code? Open in Web Editor NEW

This project forked from fnando/password_strength

0.0 3.0 0.0 240 KB

Check password strength against several rules. Includes ActiveRecord support.

password_strength's Introduction

Introduction

<img src=“https://travis-ci.org/fnando/password_strength.svg” alt=“Build Status” />

Validates the strength of a password according to several rules:

  • size

  • 3+ numbers

  • 2+ special characters

  • uppercased and downcased letters

  • combination of numbers, letters and symbols

  • password contains username

  • sequences (123, abc, aaa)

  • repetitions

  • can’t be a common password (view list at support/common.txt)

Some results:

  • 123: weak

  • 123abc: weak

  • aaaaaa: weak

  • myPass145: good

  • myPass145$: strong

Install

gem install password_strength

or put this in your Gemfile:

gem "password_strength"

If you want the source go to github.com/fnando/password_strength

Usage

strength = PasswordStrength.test("johndoe", "mypass")
#=> return a object

strength.good?
#=> status == :good

strength.weak?
#=> status == :weak

strength.strong?
#=> status == :strong

strength.status
#=> can be :weak, :good, :strong

strength.valid?(:strong)
#=> strength == :strong

strength.valid?(:good)
#=> strength == :good or strength == :strong

ActiveRecord

The PasswordStrength library comes with ActiveRecord support.

class Person < ActiveRecord::Base
  validates_strength_of :password
end

The default options are :level => :good, :with => :username.

If you want to compare your password against other field, you have to set the :with option.

validates_strength_of :password, :with => :email

The available levels are: :weak, :good and :strong

You can also provide a custom class/module that will test that password.

validates_strength_of :password, :using => CustomPasswordTester

Your CustomPasswordTester class should override the default implementation. In practice, you’re going to override only the test method that must call one of the following methods: invalid!, weak!, good! or strong!.

class CustomPasswordTester < PasswordStrength::Base
  def test
    if password != "mypass"
      invalid!
    else
      strong!
    end
  end
end

The tester above will accept only mypass as password.

PasswordStrength implements two validators: PasswordStrength::Base and PasswordStrength::Validators::Windows2008.

ATTENTION: Custom validators are not supported by JavaScript yet!

JavaScript

The PasswordStrength also implements the algorithm in the JavaScript.

var strength = PasswordStrength.test("johndoe", "mypass");
strength.isGood();
strength.isStrong();
strength.isWeak();
strength.isValid("good");

The API is basically the same!

You can use the :exclude option. Only regular expressions are supported for now.

var strength = PasswordStrength.test("johndoe", "password with whitespaces", {exclude: /\s/});
strength.isInvalid();

Additionaly, a jQuery plugin is available.

$.strength("#username", "#password");

The line above will validate the #password field against #username. The result will be an image to the respective strength status. By default the image path will be /images/weak.png, /images/good.png and /images/strong.png.

You can overwrite the image path and the default callback.

$.strength.weakImage = "/weak.png";
$.strength.goodImage = "/good.png";
$.strength.strongImage = "/strong.png";
$.strength.callback = function(username, password, strength) {
    // do whatever you want
};

If you just want to overwrite the callback, you can simple do

$.strength("#username", "#password", function(username, password, strength){
    // do whatever you want
});

Get the files:

If you’re using asset pipeline, just add the following lines to your ‘application.js`.

“‘javascript //= require jquery //= require password_strength //= require jquery_strength “`

License

(The MIT License)

Copyright © 2010-2014:

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.

password_strength's People

Contributors

fnando avatar

Watchers

Jeroen Jacobs avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.