Skip to main content

Set the Integrity-Policy HTTP header on your Django app.

Project description

https://img.shields.io/github/actions/workflow/status/adamchainz/django-integrity-policy/main.yml.svg?branch=main&style=for-the-badge https://img.shields.io/badge/Coverage-100%25-success?style=for-the-badge https://img.shields.io/pypi/v/django-integrity-policy.svg?style=for-the-badge https://img.shields.io/badge/code%20style-black-000000.svg?style=for-the-badge pre-commit

Set the Integrity-Policy HTTP header on your Django app.


Work smarter and faster with my book Boost Your Django DX which covers many ways to improve your development experience.


Requirements

Python 3.10 to 3.14 supported.

Django 4.2 to 6.0 supported.

Installation

  1. Install with pip:

python -m pip install django-integrity-policy

2. Add the middleware in your MIDDLEWARE setting. It’s best to add it after Django’s SecurityMiddleware, so it adds the header at the same point in your stack:

MIDDLEWARE = [
    ...,
    "django.middleware.security.SecurityMiddleware",
    "django_integrity_policy.IntegrityPolicyMiddleware",
    ...,
]
  1. Add an INTEGRITY_POLICY or INTEGRITY_POLICY_REPORT_ONLY setting to your settings file. Here’s an example that blocks scripts and stylesheets that lack integrity metadata:

    INTEGRITY_POLICY = {
        "blocked-destinations": ["script", "style"],
    }

    See below for more information on the settings.

Settings

The integrity policy for your page is configured with two settings:

In both cases, any violations are reported to the console and optionally to a reporting endpoint defined by the Reporting-Endpoints header. The report-only header is useful for testing a new policy before enforcing it.

Each setting should be a dictionary with the following keys:

  • blocked-destinations (required) - a list of request destinations that must include valid integrity metadata. Allowed values are 'script' and 'style'.

  • sources (optional) - a list of integrity metadata sources. The only allowed value is 'inline', which is also the default when sources is omitted.

  • endpoints (optional) - a list of reporting endpoint names to send violation reports to. The named endpoints must be defined in a Reporting-Endpoints response header.

If the keys or values are invalid, ImproperlyConfigured will be raised at instantiation time.

Examples

Block scripts and styles that lack integrity metadata:

INTEGRITY_POLICY = {
    "blocked-destinations": ["script", "style"],
}

Block scripts and report violations to a named endpoint:

INTEGRITY_POLICY = {
    "blocked-destinations": ["script"],
    "endpoints": ["integrity-endpoint"],
}

Test the effect of blocking scripts without enforcing it:

INTEGRITY_POLICY_REPORT_ONLY = {
    "blocked-destinations": ["script"],
    "endpoints": ["integrity-endpoint"],
}

Decorators

Use the below decorators to override the integrity policies (live and report-only) on a per-view basis. The decorators fully replace the given policy set by the global settings for that view, rather than merging with it.

The examples below use function-based views. To decorate class-based views, use the @method_decorator per Django’s class-based view decoration documentation.

integrity_policy_override(config)

Overrides the Integrity-Policy header for the decorated view, using a dictionary in the same format as the INTEGRITY_POLICY setting.

If config is an empty mapping ({}), no Integrity-Policy header will be added to the response for that view.

For example, to block integrity-free scripts but not styles on a particular view:

from django.shortcuts import render
from django_integrity_policy.decorators import integrity_policy_override


@integrity_policy_override(
    {
        "blocked-destinations": ["script"],
    }
)
def drawbridge_view(request):
    return render(request, "castle/drawbridge.html")

…or, to not set an integrity policy at all on a particular view:

from django.shortcuts import render
from django_integrity_policy.decorators import integrity_policy_override


@integrity_policy_override({})
def dungeon_view(request):
    return render(request, "castle/dungeon.html")

integrity_policy_report_only_override(config)

Overrides the Integrity-Policy-Report-Only header for the decorated view, using a dictionary in the same format as the INTEGRITY_POLICY_REPORT_ONLY setting.

If config is an empty mapping ({}), no Integrity-Policy-Report-Only header will be added to the response for that view.

For example, to test a policy that blocks integrity-free scripts and styles for a particular view:

from django.shortcuts import render
from django_integrity_policy.decorators import integrity_policy_report_only_override


@integrity_policy_report_only_override(
    {
        "blocked-destinations": ["script", "style"],
        "endpoints": ["integrity-endpoint"],
    }
)
def gatehouse_view(request):
    return render(request, "castle/gatehouse.html")

…or, to not set a report-only integrity policy at all on a particular view:

from django.shortcuts import render
from django_integrity_policy.decorators import integrity_policy_report_only_override


@integrity_policy_report_only_override({})
def moat_view(request):
    return render(request, "castle/moat.html")

Adding integrity attributes

Once Integrity-Policy is set, the browser will block any scripts or stylesheets (depending on configuration) that lack a valid integrity attribute, including your first-party resources. To generate integrity attributes for your project’s static files, you can use the django-sri package, which provides template tags to generate appropriately hashed HTML tags. For example:

{% load sri %}

{% sri_static "app.js" %}
{% sri_static "app.css" %}

…will output:

<script src="/static/app.js" integrity="sha256-..."></script>
<link rel="stylesheet" href="/static/app.css" integrity="sha256-..."/>

These tags would be allowed per a strict integrity policy.

For a full example project, see the example/ directory in this repository.

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_integrity_policy-1.1.0.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

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

django_integrity_policy-1.1.0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file django_integrity_policy-1.1.0.tar.gz.

File metadata

  • Download URL: django_integrity_policy-1.1.0.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for django_integrity_policy-1.1.0.tar.gz
Algorithm Hash digest
SHA256 a0664a2c54b5339dc358ef6a868e9fa094cf7991250a164a5f79997571db9b3c
MD5 3b2be7013bd1bc365d86b9766c6f1445
BLAKE2b-256 0723dd8960c118b72c69ec0e54f75b59fa5638b38c59cdb1b3ac21bf32d8c291

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_integrity_policy-1.1.0.tar.gz:

Publisher: main.yml on adamchainz/django-integrity-policy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file django_integrity_policy-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_integrity_policy-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b49b5b5f479b501bbe00ebfad835f14311142f37355bb36303887fa07afd540e
MD5 b416fa404acba4aa91059645a18c06af
BLAKE2b-256 4983b08df16e46c26289c7f51fb7e444e07d87184e1fb7ef900e0b45cef2df55

See more details on using hashes here.

Provenance

The following attestation bundles were made for django_integrity_policy-1.1.0-py3-none-any.whl:

Publisher: main.yml on adamchainz/django-integrity-policy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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