python-django 3:4.2.11-1ubuntu1.1 source package in Ubuntu

Changelog

python-django (3:4.2.11-1ubuntu1.1) noble-security; urgency=medium

  * SECURITY UPDATE: DoS in django.utils.html.urlize()
    - debian/patches/CVE-2024-38875.patch: mitigated potential DoS in
      urlize and urlizetrunc template filters in django/utils/html.py,
      tests/utils_tests/test_html.py.
    - CVE-2024-38875
  * SECURITY UPDATE: username enumeration via timing issue
    - debian/patches/CVE-2024-39329.patch: standarized timing of
      verify_password() when checking unusable passwords in
      django/contrib/auth/hashers.py, tests/auth_tests/test_hashers.py.
    - CVE-2024-39329
  * SECURITY UPDATE: directory-traversal via Storage.save()
    - debian/patches/CVE-2024-39330.patch: added extra file name validation
      in Storage's save method in django/core/files/storage/base.py,
      django/core/files/utils.py, tests/file_storage/test_base.py,
      tests/file_storage/tests.py, tests/file_uploads/tests.py.
    - CVE-2024-39330
  * SECURITY UPDATE: DoS in get_supported_language_variant()
    - debian/patches/CVE-2024-39614.patch: mitigated potential DoS in
      django/utils/translation/trans_real.py, docs/ref/utils.txt,
      tests/i18n/tests.py.
    - CVE-2024-39614

 -- Marc Deslauriers <email address hidden>  Fri, 05 Jul 2024 07:24:17 -0400

Upload details

Uploaded by:
Marc Deslauriers
Uploaded to:
Noble
Original maintainer:
Ubuntu Developers
Architectures:
all
Section:
python
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
python-django_4.2.11.orig.tar.gz 9.9 MiB 6e6ff3db2d8dd0c986b4eec8554c8e4f919b5c1ff62a5b4390c17aff2ed6e5c4
python-django_4.2.11-1ubuntu1.1.debian.tar.xz 38.4 KiB 8479e0b92fba71e92c4a1cfd7efc95ebf2f754cacb619d84f236d9e0e65bd9cb
python-django_4.2.11-1ubuntu1.1.dsc 2.8 KiB 88e9766f2dac9ea7f9b23ba576c93f21f3f89e3905ff0ab8e411c4fbb217fb1e

View changes file

Binary packages built by this source

python-django-doc: High-level Python web development framework (documentation)

 Django is a high-level web application framework that loosely follows the
 model-view-controller design pattern.
 .
 Python's equivalent to Ruby on Rails, Django lets you build complex
 data-driven websites quickly and easily - Django focuses on automating as much
 as possible and adhering to the "Don't Repeat Yourself" (DRY) principle.
 .
 Django additionally emphasizes reusability and "pluggability" of components;
 many generic third-party "applications" are available to enhance projects or
 to simply to reduce development time even further.
 .
 This package contains the HTML documentation and example projects.

python3-django: High-level Python web development framework

 Django is a high-level web application framework that loosely follows the
 model-view-controller design pattern.
 .
 Python's equivalent to Ruby on Rails, Django lets you build complex
 data-driven websites quickly and easily - Django focuses on automating as much
 as possible and adhering to the "Don't Repeat Yourself" (DRY) principle.
 .
 Django additionally emphasizes reusability and "pluggability" of components;
 many generic third-party "applications" are available to enhance projects or
 to simply to reduce development time even further.
 .
 Notable features include:
  * An object-relational mapper (ORM)
  * Automatic admin interface
  * Elegant URL dispatcher
  * Form serialization and validation system
  * Templating system
  * Lightweight, standalone web server for development and testing
  * Internationalization support
  * Testing framework and client