1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
Source: asgi-csrf
Maintainer: Debian Python Team <team+python@tracker.debian.org>
Uploaders:
Edward Betts <edward@4angle.com>,
Section: python
Priority: optional
Build-Depends:
debhelper-compat (= 13),
dh-sequence-python3,
pybuild-plugin-pyproject,
python3-all,
python3-setuptools,
Build-Depends-Indep:
python3-asgi-lifespan <!nocheck>,
python3-httpx <!nocheck>,
python3-itsdangerous <!nocheck>,
python3-python-multipart <!nocheck>,
python3-pytest <!nocheck>,
python3-pytest-asyncio <!nocheck>,
python3-starlette <!nocheck>,
Rules-Requires-Root: no
Standards-Version: 4.7.0
Homepage: https://github.com/simonw/asgi-csrf
Vcs-Browser: https://salsa.debian.org/python-team/packages/asgi-csrf
Vcs-Git: https://salsa.debian.org/python-team/packages/asgi-csrf.git
Package: python3-asgi-csrf
Architecture: all
Depends:
${misc:Depends},
${python3:Depends},
Description: ASGI middleware for protecting against CSRF attacks
The asgi-csrf package is a Python library that provides Cross-Site Request
Forgery (CSRF) protection for ASGI (Asynchronous Server Gateway Interface)
applications. It helps secure web applications from CSRF attacks by adding
middleware that validates and protects against unauthorized requests.
.
Features:
.
- Adds CSRF protection to ASGI applications.
- Supports popular ASGI frameworks like FastAPI and Starlette.
- Integrates seamlessly into existing ASGI application pipelines.
- Provides configurable settings for token generation and validation.
- Allows for exclusion of specific routes or URLs from CSRF protection.
- Ensures stateless and secure CSRF protection in asynchronous web
environments.
.
CSRF attacks are a common security concern for web applications, and the
asgi-csrf library aims to provide a straightforward solution for adding
protection to ASGI-based applications, ensuring that users' interactions are
safe and authenticated.
|