diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2024-08-19 14:47:38 -0300 |
|---|---|---|
| committer | Natalia <124304+nessita@users.noreply.github.com> | 2024-09-03 09:33:01 -0300 |
| commit | 96d84047715ea1715b4bd1594e46122b8a77b9e2 (patch) | |
| tree | 4958537fcbb3993792a3bcd271fa0b31508166b3 /docs/ref/logging.txt | |
| parent | 813de2672bd7361e9a453ab62cd6e52f96b6525b (diff) | |
[5.0.x] Fixed CVE-2024-45231 -- Avoided server error on password reset when email sending fails.
On successful submission of a password reset request, an email is sent
to the accounts known to the system. If sending this email fails (due to
email backend misconfiguration, service provider outage, network issues,
etc.), an attacker might exploit this by detecting which password reset
requests succeed and which ones generate a 500 error response.
Thanks to Thibaut Spriet for the report, and to Mariusz Felisiak, Adam
Johnson, and Sarah Boyce for the reviews.
Diffstat (limited to 'docs/ref/logging.txt')
| -rw-r--r-- | docs/ref/logging.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/ref/logging.txt b/docs/ref/logging.txt index fa07422cd5..672b9eae22 100644 --- a/docs/ref/logging.txt +++ b/docs/ref/logging.txt @@ -214,6 +214,18 @@ Django development server. This logger generates an ``INFO`` message upon detecting a modification in a source code file and may produce ``WARNING`` messages during filesystem inspection and event subscription processes. +.. _django-contrib-auth-logger: + +``django.contrib.auth`` +~~~~~~~~~~~~~~~~~~~~~~~ + +.. versionadded:: 4.2.16 + +Log messages related to :doc:`contrib/auth`, particularly ``ERROR`` messages +are generated when a :class:`~django.contrib.auth.forms.PasswordResetForm` is +successfully submitted but the password reset email cannot be delivered due to +a mail sending exception. + .. _django-contrib-gis-logger: ``django.contrib.gis`` |
