All Projects → dmpayton → Django Admin Honeypot

dmpayton / Django Admin Honeypot

Licence: mit
🍯 A fake Django admin login screen page.

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Django Admin Honeypot

Django Split Settings
Organize Django settings into multiple files and directories. Easily override and modify settings. Use wildcards and optional settings files.
Stars: ✭ 684 (-10.94%)
Mutual labels:  django
Django Avatar
A Django app for handling user avatars.
Stars: ✭ 720 (-6.25%)
Mutual labels:  django
Cmdb
CMDB 配置管理系统 资产管理系统
Stars: ✭ 747 (-2.73%)
Mutual labels:  django
Awesome Django Rest Framework
💻😍Tools, processes and resources you need to create an awesome API with Django REST Framework
Stars: ✭ 689 (-10.29%)
Mutual labels:  django
Recipes
Django application for managing recipes
Stars: ✭ 695 (-9.51%)
Mutual labels:  django
Django Admin Interface
django's default admin interface made customizable. popup windows replaced by modals. :mage: ⚡️
Stars: ✭ 717 (-6.64%)
Mutual labels:  django
Django Lifecycle
Declarative model lifecycle hooks, an alternative to Signals.
Stars: ✭ 672 (-12.5%)
Mutual labels:  django
Eventsourcing
A library for event sourcing in Python.
Stars: ✭ 760 (-1.04%)
Mutual labels:  django
Django Rest Framework Filters
Better filtering for Django REST Framework
Stars: ✭ 710 (-7.55%)
Mutual labels:  django
Mixer
Mixer -- Is a fixtures replacement. Supported Django, Flask, SqlAlchemy and custom python objects.
Stars: ✭ 743 (-3.26%)
Mutual labels:  django
42 subjects
All Subjects of 42 School
Stars: ✭ 693 (-9.77%)
Mutual labels:  django
Chartkick.py
Create beautiful Javascript charts with minimal code
Stars: ✭ 695 (-9.51%)
Mutual labels:  django
Acra
Database security suite. Database proxy with field-level encryption, search through encrypted data, SQL injections prevention, intrusion detection, honeypots. Supports client-side and proxy-side ("transparent") encryption. SQL, NoSQL.
Stars: ✭ 726 (-5.47%)
Mutual labels:  django
Django Treebeard
Efficient tree implementations for Django
Stars: ✭ 689 (-10.29%)
Mutual labels:  django
Promgen
Promgen is a configuration file generator for Prometheus
Stars: ✭ 754 (-1.82%)
Mutual labels:  django
Django React Template
Django & React Template For Building Web Applications
Stars: ✭ 686 (-10.68%)
Mutual labels:  django
Nsupdate.info
Dynamic DNS service
Stars: ✭ 720 (-6.25%)
Mutual labels:  django
Try Django
Learn Django bit by bit in this series
Stars: ✭ 767 (-0.13%)
Mutual labels:  django
Izone
django+bootstrap4 个人博客
Stars: ✭ 757 (-1.43%)
Mutual labels:  django
Django Recaptcha
Django reCAPTCHA form field/widget integration app.
Stars: ✭ 742 (-3.39%)
Mutual labels:  django

===================== django-admin-honeypot

.. image:: https://travis-ci.org/dmpayton/django-admin-honeypot.svg?branch=develop :target: https://travis-ci.org/dmpayton/django-admin-honeypot :alt: Travis-CI

.. image:: https://coveralls.io/repos/dmpayton/django-admin-honeypot/badge.svg?branch=develop :target: https://coveralls.io/r/dmpayton/django-admin-honeypot :alt: Coverage

.. image:: https://codeclimate.com/github/dmpayton/django-admin-honeypot/badges/gpa.svg?branch=develop :target: https://codeclimate.com/github/dmpayton/django-admin-honeypot :alt: Code Climate

django-admin-honeypot is a fake Django admin login screen to log and notify admins of attempted unauthorized access. This app was inspired by discussion in and around Paul McMillan's security talk at DjangoCon 2011.

  • Author: Derek Payton <http://dmpayton.com/>_
  • Version: 1.1.0
  • License: MIT

Documentation

http://django-admin-honeypot.readthedocs.io

tl;dr

  • Install django-admin-honeypot from PyPI::

      pip install django-admin-honeypot
    
  • Add admin_honeypot to INSTALLED_APPS

  • Update your urls.py:

    ::

      urlpatterns = [
          ...
          path('admin/', include('admin_honeypot.urls', namespace='admin_honeypot')),
          path('secret/', admin.site.urls),
      ]
    
  • Run python manage.py migrate

NOTE: replace secret in the url above with your own secret url prefix

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].