mirror of
https://github.com/django/django.git
synced 2025-11-25 21:22:14 +00:00
Fixed CVE-2024-41990 -- Mitigated potential DoS in urlize and urlizetrunc template filters.
Thanks to MProgrammer for the report.
This commit is contained in:
parent
c19465ad87
commit
ecf1f8fb90
4 changed files with 24 additions and 10 deletions
|
|
@ -359,6 +359,8 @@ class TestUtilsHtml(SimpleTestCase):
|
|||
"[(" * 100_000 + ":" + ")]" * 100_000,
|
||||
"([[" * 100_000 + ":" + "]])" * 100_000,
|
||||
"&:" + ";" * 100_000,
|
||||
"&.;" * 100_000,
|
||||
".;" * 100_000,
|
||||
)
|
||||
for value in tests:
|
||||
with self.subTest(value=value):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue