Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dmpayton/django-admin-honeypot
:honey_pot: A fake Django admin login screen page.
https://github.com/dmpayton/django-admin-honeypot
django python
Last synced: 20 days ago
JSON representation
:honey_pot: A fake Django admin login screen page.
- Host: GitHub
- URL: https://github.com/dmpayton/django-admin-honeypot
- Owner: dmpayton
- License: mit
- Created: 2011-09-13T23:29:15.000Z (about 13 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-10T14:22:38.000Z (7 months ago)
- Last Synced: 2024-05-22T15:10:25.347Z (6 months ago)
- Topics: django, python
- Language: Python
- Homepage: http://django-admin-honeypot.readthedocs.io/
- Size: 160 KB
- Stars: 1,002
- Watchers: 32
- Forks: 182
- Open Issues: 19
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
- my-awesome-starred - django-admin-honeypot - :honey_pot: A fake Django admin login screen page. (Python)
- awesome-honeypots - django-admin-honeypot - Fake Django admin login screen to notify admins of attempted unauthorized access. (Honeypots)
- awesome-honeypots - django-admin-honeypot - Fake Django admin login screen to notify admins of attempted unauthorized access. (Honeypots)
- -awesome-django - django-admin-honeypot - Configure a honeypot to see who's trying to hack your site. (Third-Party Packages / Admin)
- awesome-django - django-admin-honeypot - Configure a honeypot to see who's trying to hack your site. (Third-Party Packages / Admin)
- fucking-awesome-honeypots - django-admin-honeypot - Fake Django admin login screen to notify admins of attempted unauthorized access. (Honeypots)
- awesome-django-security - Django Admin Honeypot - admin-honeypot is a fake Django admin login screen to log and notify admins of attempted unauthorized access (Libs / Honeypots)
- awesome-honeypot - **597**星
- starred-awesome - django-admin-honeypot - :honey_pot: A fake Django admin login screen page. (Python)
README
=====================
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 `_
* **Version**: 1.1.0
* **License**: MITDocumentation
=============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