Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

django-admin-honeypot-updated-2021

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

django-admin-honeypot-updated-2021

A fake Django admin login screen to notify admins of attempted unauthorized access.

  • 1.2.0
  • PyPI
  • Socket score

Maintainers
1

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

.. image:: https://img.shields.io/pypi/v/django-admin-honeypot.svg :target: https://pypi.python.org/pypi/django-admin-honeypot/ :alt: pypi version

.. 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

.. image:: https://pepy.tech/badge/django-admin-honeypot :target: https://pepy.tech/project/django-admin-honeypot :alt: pypi downloads

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

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc