flask 0.12.2-3ubuntu0.1 source package in Ubuntu
Changelog
flask (0.12.2-3ubuntu0.1) bionic-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:42:40 -0300
Upload details
- Uploaded by:
- Leonidas S. Barbosa
- Uploaded to:
- Bionic
- Original maintainer:
- Ubuntu Developers
- Architectures:
- all
- Section:
- python
- Urgency:
- Medium Urgency
See full publishing history Publishing
Series | Published | Component | Section | |
---|---|---|---|---|
Bionic | updates | main | python | |
Bionic | security | main | python |
Downloads
File | Size | SHA-256 Checksum |
---|---|---|
flask_0.12.2.orig.tar.gz | 535.7 KiB | 49f44461237b69ecd901cc7ce66feea0319b9158743dd27a2899962ab214dac1 |
flask_0.12.2-3ubuntu0.1.debian.tar.xz | 8.7 KiB | ba9245d1a77e9657a2f86b42524d4266b5974b987f78d4f4e2434f9bafb1c863 |
flask_0.12.2-3ubuntu0.1.dsc | 2.5 KiB | 9569b108d4bfaeac411f2520ca068c6fb77bd0940ccd58049f58ddd5f0c7143d |
Available diffs
Binary packages built by this source
- python-flask: micro web framework based on Werkzeug and Jinja2 - Python 2.7
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 2.7 module.
- 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.