GithubHelp home page GithubHelp logo

pombredanne / django-secure-login Goto Github PK

View Code? Open in Web Editor NEW

This project forked from agiliq/django-secure-login

0.0 1.0 0.0 66 KB

License: BSD 3-Clause "New" or "Revised" License

Makefile 1.89% Python 98.11%

django-secure-login's Introduction

Django Secure Login

Build Status Coverage Status

Overview

Django secure login provides utilities to add simple security steps around login and registration. It provides two mixins, SecureLoginBackendMixin and SecureFormMixin which check for common vulnerabilities while logging in.

  • SecureLoginBackendMixin can be used with any Backend which has a concept of username and password
  • SecureFormMixin can be used with any Form which has a concept of username and password. (eg login form, registration form etc)

Settings

  • SECURE_LOGIN_CHECKERS: A list of strings which can be evaluated to callables. The callable should return True if it wants the authentication to go through.
  • SECURE_LOGIN_ON_FAIL: A list of strings which can be evaluated to callables. Can take any action appropriate to a failed login.
  • SECURE_LOGIN_MAX_HOURLY_ATTEMPTS: Max failed attempts per hour before the user is locked out.

Features

  • Works with any Backend and Form which has usename-y and password-y attributes.
  • Ensure that passwords have a minimum length (default 6)
  • Ensure that the password is not in the list of known weak passwords.
  • Ensure username is not same as password
  • Email user on a failed login attempt for them.
  • Lockout after 10 failed attempts within an hour.

Usage

Simple

Set

AUTHENTICATION_BACKENDS = ("secure_login.backends.SecureLoginBackend", )

Which will run all the default checkers.

Advanced

AUTHENTICATION_BACKENDS = ("secure_login.backends.SecureLoginBackend", )

And

SECURE_LOGIN_CHECKERS = [
    "secure_login.checkers.no_weak_passwords",
    "secure_login.checkers.no_short_passwords",
]

SECURE_LOGIN_CHECKERS should be a list of callables. Each callable should only return true if it wants the authentication to go through.

And

SECURE_LOGIN_ON_FAIL = [
    "secure_login.on_fail.email_user",
    "secure_login.on_fail.populate_failed_requests",
]

SECURE_LOGIN_ON_FAIL should be a list of callables. Each callable would be called in order if the authentication falls.

Writing new secure backends.

If you have an existing backend FooBackend, you can add SecureBackend like this.

class SecureFooLoginBackend(SecureLoginBackendMixin, FooBackend):
    pass

If this backend has email as an username like identifier.

class SecureFooLoginBackend(SecureLoginBackendMixin, FooBackend):

    def username_fieldname(self):
        return "email"

Secure Form

Use the SecureFormMixin with your usual forms. If you have an existing for FooForm

class SecureFooForm(SecureFormMixin, FooForm):
    pass

If this form uses email as username lke identifier

class SecureFooForm(SecureFormMixin, FooForm):

    def username_fieldname(self):
        return "email"

SECURE_LOGIN_CHECKERS will be tested in the the clean method.

TODO

  • Rate limits login attempts per IP.
  • Rate limits login attempts per user.
  • Emails admins on X failed attempts.
  • Integrate with fail2ban.
  • Support 2F authentication

django-secure-login's People

Contributors

akshar-raaj avatar manjunath24 avatar shabda avatar tuxcanfly avatar

Watchers

 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.