django-honeypot-signals

* This app provides a simple signal handler for the App django-admin-honeypot * https://github.com/dmpayton/django-admin-honeypot Functions: If someone tries to login using the wrong admin url, django-admin-honeypot creates a new model instance, which includes all significant information about this attempt. After save() the signal handler sends a notification email to settings.MANAGERS, which includes the basic model information.


Keywords
admin_honeypot, admin-honeypot, honeypot, signals, email
License
Other
Install
pip install django-honeypot-signals==0.1.1

Documentation

Important

This app has been discontinued and is no longer maintained.

If you want to enable honeypot notifications, please take a look at the django-admin-honeypot settings: http://django-admin-honeypot.readthedocs.io/

Django Admin Honeypot Signals

If you are using the admin_honeypot App to log failed login attempts, you may want to be notified via email.

Features:

If someone tries to login using the wrong admin url, django-admin-honeypot creates a new model instance, which includes all significant information about this attempt. After save() the signal handler sends a notification email to settings.MANAGERS, which includes the basic model information.

How to use

Get und implement django-admin-honeypot:

Make sure it is working perfect.

  • Install this package:

    pip install -e git://github.com/bitmazk/django-honeypot-signals#egg=honeypot_signals
    
  • Add honeypot_signals to your INSTALLED_APPS:

    INSTALLED_APPS = (
        [...]
        'honeypot_signals',
    }
    
  • Add MANAGERS to your settings.py:

    MANAGERS = (
        ('Foo Bar', 'foobar@example.com'),
    )