Skip to main content

A tool to analyze your Django app access control

Project description

Django Access Inspector

Django Access Inspector is a comprehensive access control app for Django that helps you enforce fine-grained access control on your views. It provides a flexible and easy-to-use interface to check and analyze authentication and permission classes for each view in your Django project.

Installation

To install Django Access Inspector, you can use pip, poetry, or uv. Here are the commands:

pip install django-access-inspector
poetry add django-access-inspector
uv add django-access-inspector

After installing, make sure to add "django_access_inspector" to your INSTALLED_APPS setting in your Django project's settings.py file:

INSTALLED_APPS = [
    ...,
    "django_access_inspector",
]

Usage

Basic Usage

To run Django Access Inspector, use the following command:

python manage.py inspect_access_control

By default, it will provide a human-readable output. If you prefer a JSON output, you can use the --output json flag:

python manage.py inspect_access_control --output json

CI Mode

Django Access Inspector supports a CI mode that helps ensure your application's access control remains secure over time. This mode uses snapshots to track the current state of your endpoints and fails if new unauthenticated or unchecked endpoints are introduced.

Generating a Snapshot

First, generate a baseline snapshot of your current access control state:

python manage.py inspect_access_control --snapshot baseline.json

This will save the current state of all your endpoints to a JSON file.

Running in CI Mode

In your CI pipeline, use the snapshot to validate that no new security issues have been introduced:

python manage.py inspect_access_control --ci --snapshot baseline.json

The command will:

  • Compare the current analysis with the saved snapshot
  • Exit with code 0 if no new security issues are found
  • Exit with code 1 if new unauthenticated or unchecked endpoints are detected
  • Display detailed information about any changes found

This is particularly useful in CI/CD pipelines to prevent introducing new security vulnerabilities.

Debug Mode

When you need to troubleshoot authentication detection issues, you can enable detailed debug logging:

python manage.py inspect_access_control --debug

Debug mode provides detailed information about:

  • URL pattern extraction process
  • View function discovery and analysis
  • Authentication and permission detection logic
  • Categorization decisions for each endpoint
  • Detailed analysis of Django and DRF authentication mechanisms

This helps you understand why certain endpoints might be categorized as "unchecked" and allows you to verify that the tool correctly identifies your authentication setup.

Example

cli example output

Here's an interpretation of the output:

  • Unchecked views: Views that Django Access Inspector was not able to check. As the tool is still a work in progress, we aim to make it check all views in the future.
  • Model Admin views: Views generated by Django Admin that are checked with the Django Admin permission system.
  • Views: All views that Django Access Inspector was able to check, including their authentication and permission classes.

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_access_inspector-0.3.0.tar.gz (34.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

django_access_inspector-0.3.0-py3-none-any.whl (46.5 kB view details)

Uploaded Python 3

File details

Details for the file django_access_inspector-0.3.0.tar.gz.

File metadata

  • Download URL: django_access_inspector-0.3.0.tar.gz
  • Upload date:
  • Size: 34.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for django_access_inspector-0.3.0.tar.gz
Algorithm Hash digest
SHA256 d15019b7d7f9b538735250504c0a064ea5d04fa586b340bc5449d038460b7fe2
MD5 246295dae2849b85fc267ee9b60491a4
BLAKE2b-256 a8754a807282f6b2fff185b0de3fcc177bd9381d0d985b7f7e47763cee45b04f

See more details on using hashes here.

File details

Details for the file django_access_inspector-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_access_inspector-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2ec02840cc4e7f9525b63a52471c153951a86a8686d699717692f42a4255c118
MD5 efe6432d9f4ec76b63ac44649620a264
BLAKE2b-256 b0219626462d66ff2ced40742c01191b550872846d0c48a2e74d74cd95030d54

See more details on using hashes here.

Supported by

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