File: control

package info (click to toggle)
flask-paranoid 0.2.0-3.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 124 kB
  • sloc: python: 99; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 1,149 bytes parent folder | download | duplicates (2)
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
Source: flask-paranoid
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Christoph Berg <myon@debian.org>
Section: python
Priority: optional
Build-Depends:
 debhelper (>= 9),
 dh-python,
 python3-all,
 python3-flask,
 python3-setuptools,
Standards-Version: 4.3.0
Homepage: https://github.com/miguelgrinberg/flask-paranoid/
Vcs-Git: https://salsa.debian.org/python-team/modules/flask-paranoid.git
Vcs-Browser: https://salsa.debian.org/python-team/modules/flask-paranoid

Package: python3-flask-paranoid
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Simple user session protection
 Flask-Paranoid protects user sessions. When a client connects to this
 application, a "paranoid" token will be generated according to the IP address
 and user agent. In all subsequent requests, the token will be recalculated and
 checked against the one computed for the first request. If the session cookie
 is stolen and the attacker tries to use it from another location, the
 generated token will be different, and in that case the extension will clear
 the session and block the request.