flask 0.10.1-2ubuntu0.1 source package in Ubuntu

Changelog

flask (0.10.1-2ubuntu0.1) xenial-security; urgency=medium

  * SECURITY UPDATE: Denial of service
    - debian/patches/CVE-2018-1000656.patch: fixing data incorrect encode
      in flask/json.py, flask/testsuite/helpers.py, flask/wrappers.py.
    - CVE-2018-1000656

 -- <email address hidden> (Leonidas S. Barbosa)  Mon, 01 Jun 2020 08:41:19 -0300

Upload details

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

See full publishing history Publishing

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

Builds

Xenial: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
flask_0.10.1.orig.tar.gz 531.5 KiB 4c83829ff83d408b5e1d4995472265411d2c414112298f2eb4b359d9e4563373
flask_0.10.1-2ubuntu0.1.debian.tar.xz 6.0 KiB ab17e39f76c63cf0717fa921992c60c788f46633724a51303868b00a5cc28f95
flask_0.10.1-2ubuntu0.1.dsc 2.4 KiB eb6061ba10be63d46b9dcaf534c2cd57f9d2bce181cd6e5c4d1b053d51b8262a

View changes file

Binary packages built by this source

python-flask: micro web framework based on Werkzeug, Jinja2 and good intentions

 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()

python-flask-doc: documentation for Flask micro web framework

 Flask is a Python micro web framework based on Werkzeug and Jinja2
 .
 This package contains the documentation for Flask

python3-flask: micro web framework based on Werkzeug, Jinja2 and good intentions

 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()