Customizable middleware for adding automatic cookie encryption and decryption to Starlette applications.
Tested support on Python 3.7, 3.8, 3.9, and 3.10, 3.11 on macOS, Windows, and Linux.
sequenceDiagram
Browser->>+Middleware: Encrypted 'Cookie' headers
Middleware->>+Application: Decrypted cookies
Application->>-Middleware: Plaintext cookies
Middleware->>-Browser: Encrypted 'Set-Cookie' headers
Note over Application: *The Application may be your service<br />or any additional middleware.
For any incoming cookies:
- Requests sent from the client's browser to your application are intercepted by
SecureCookiesMiddleware
. - All
Cookie
headers are filtered and parsed. Only cookies in theincluded_cookies
andexcluded_cookies
parameters are parsed. All cookies are included by default. - The cookies are decrypted. If a cookie cannot be decrypted, or is otherwise invalid, it is discarded by default (
discard_invalid=True
). - Any included and valid encrypted cookies in the ASGI request scope are replaced by the decrypted ones.
- The request scope is passed to any future middleware, and eventually your application. Cookies can be read normally anywhere downstream.
For any outgoing cookies:
- Your application sets cookies with
response.set_cookie
, or by any other means of creatingSet-Cookie
headers. - Other middleware run and add additional cookies, like SessionMiddleware.
- All responses returned by your application are intercepted by
SecureCookiesMiddleware
. - Cookies in the
included_cookies
and not in theexcluded_cookies
parameters are re-encrypted, and their attributes (like"SameSite"
and"HttpOnly"
) are overridden by any parameters set inSecureCookiesMiddleware
. - The cookies in the response are replaced by the re-encrypted cookies, and the response is eventually propagated to the client's browser.
$ pdm add starlette-securecookies
# or
$ python -m pip install --user starlette-securecookies
This is a Starlette-based middleware, so it can be used in any Starlette application or Starlette-based framework (like FastAPI).
For example,
from starlette.applications import Starlette
from starlette.middleware import Middleware
from securecookies import SecureCookiesMiddleware
middleware = [
Middleware(
SecureCookiesMiddleware, secrets=["SUPER SECRET SECRET"],
# your other middleware
)
]
app = Starlette(routes=..., middleware=middleware)
Note that if you're using another middleware that injects cookies into the response (such as SessionMiddleware), you have to make sure SecureCookiesMiddleware
executes after it so the cookie is present at encryption-time. Counter intuitively, in practice this means ensuring SecureCookiesMiddleware
is first in the list of middleware.
starlette-securecookies
provides some extras that introduce or patch secure cookie functionality into existing tools. They all reside in the securecookies.extras
module. Currently there is only one, but more are welcome by recommendation or Pull Request!
csrf.SecureCSRFMiddleware
: Adds compatibility to the CSRF middleware provided by starlette_csrf. To use it, simply add it to your list of middleware (keep in mind the ordering). If you don't want to specifystarlette_csrf
as a direct dependency, you can also install it through the[csrf]
package extra.
This software is licensed under the BSD 3-Clause License.
This package is Treeware. If you use it in production, consider buying the world a tree to thank me for my work. By contributing to my forest, you’ll be creating employment for local families and restoring wildlife habitats.