Skip to main content

IP number based authentication for Django

Project description

To install add the middleware to MIDDLEWARE_CLASSES:

'django_ip_authn.authentication.Middleware',

You also need to add the authentication backend to AUTHENTICATION_BACKENDS. This will probably not already exist, in which case you will want the entirety of this:

AUTHENTICATION_BACKENDS = (
    'django.contrib.auth.backends.ModelBackend',
    'django_ip_authn.authentication.Authenticate',
)

By default it will not authenticate until you also add in the IP numbers that it should allow:

VALID_IP_NUMBERS = [
    '127.0.0.1', '127.0.1.1', # Allow only localhost IP numbers
]

Currently it will automatically allow the user with ID 1, this is the user that you create during the initial database creation in Django.

There is an optional header to determine which request.META header value to use to get the remote IP number. This defaults to REMOTE_ADDR. If you are behind a HTTP router you may need to set this to something like the X-Forwarded-For:

REMOTE_IP_HEADER='HTTP_X_FORWARDED_FOR'

Make sure that your HTTP router always sets this or you will open the possibility for a remote client to get around the IP number check by just setting a header on the request.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_ip_authn-0.3.0.1.tar.gz (2.4 kB view details)

Uploaded Source

File details

Details for the file django_ip_authn-0.3.0.1.tar.gz.

File metadata

File hashes

Hashes for django_ip_authn-0.3.0.1.tar.gz
Algorithm Hash digest
SHA256 791567edd38ee6869e9138b4c61c01e5b8e28fa26bfef186d4a58e7cc0cb1cef
MD5 2be797519886a4bbb4ac8f848f7d015e
BLAKE2b-256 da94167a87a72eb5be08a0ba7b58026caa1f81920a505687db4a2467cb33f89f

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page