mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed CVE-2018-6188 -- Fixed information leakage in AuthenticationForm.
Reverted 359370a8b8
(refs #28645).
This is a security fix.
This commit is contained in:
parent
552abffab1
commit
af33fb250e
5 changed files with 67 additions and 14 deletions
|
@ -1,8 +1,11 @@
|
|||
from django.contrib.admin.forms import AdminAuthenticationForm
|
||||
from django.contrib.auth.models import User
|
||||
from django.test import TestCase
|
||||
from django.test import TestCase, override_settings
|
||||
|
||||
|
||||
# To verify that the login form rejects inactive users, use an authentication
|
||||
# backend that allows them.
|
||||
@override_settings(AUTHENTICATION_BACKENDS=['django.contrib.auth.backends.AllowAllUsersModelBackend'])
|
||||
class AdminAuthenticationFormTests(TestCase):
|
||||
@classmethod
|
||||
def setUpTestData(cls):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue