flask 1.1.1-2ubuntu0.1 source package in Ubuntu

Changelog

flask (1.1.1-2ubuntu0.1) focal-security; urgency=medium

  * SECURITY UPDATE: Expose sensitive information
    - debian/patches/CVE-2023-30861.patch: set 'Vary: Cookie'
      header consistently for session in src/flask/sessions.py,
      tests/test_basic.py.
    - CVE-2023-30861

 -- Leonidas Da Silva Barbosa <email address hidden>  Wed, 17 May 2023 11:19:21 -0300

Upload details

Uploaded by:
Leonidas S. Barbosa
Uploaded to:
Focal
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Focal updates main python
Focal security main python

Builds

Focal: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
flask_1.1.1.orig.tar.gz 610.8 KiB 13f9f196f330c7c2c5d7a5cf91af894110ca0215ac051b5844701f2bfd934d52
flask_1.1.1-2ubuntu0.1.debian.tar.xz 7.0 KiB 10e00ee598cb3f8bc9611e310ca86c8b785072223db9715c024e99e660910e01
flask_1.1.1-2ubuntu0.1.dsc 2.4 KiB f6c7726df1d919e443c0e02b7b91f389ec77006068be16665e76619f12f1a085

View changes file

Binary packages built by this source

python-flask-doc: micro web framework based on Werkzeug and Jinja2 - documentation

 Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
 intentions. A minimal Flask application looks like that:
 .
   from flask import Flask
   app = Flask(__name__)
 .
   @app.route("/")
   def hello():
       return "Hello World!"
 .
   if __name__ == '__main__':
       app.run()
 .
 This package contains the documentation for Flask.

python3-flask: micro web framework based on Werkzeug and Jinja2 - Python 3.x

 Flask is a micro web framework for Python based on Werkzeug, Jinja 2 and good
 intentions. A minimal Flask application looks like that:
 .
   from flask import Flask
   app = Flask(__name__)
 .
   @app.route("/")
   def hello():
       return "Hello World!"
 .
   if __name__ == '__main__':
       app.run()
 .
 This package contains the Python 3.x module.