diff options
| author | Natalia <124304+nessita@users.noreply.github.com> | 2023-09-19 09:51:48 -0300 |
|---|---|---|
| committer | Natalia <124304+nessita@users.noreply.github.com> | 2023-10-04 09:39:49 -0300 |
| commit | be9c27c4d18c2e6a5be8af4e53c0797440794473 (patch) | |
| tree | cc827c8dfbc8e7df02ccc1c43008bb16b2fe0a77 /django | |
| parent | 39fc3f46a8777a499f6358c6f06b4bcfffabb137 (diff) | |
[4.2.x] Fixed CVE-2023-43665 -- Mitigated potential DoS in django.utils.text.Truncator when truncating HTML text.
Thanks Wenchao Li of Alibaba Group for the report.
Diffstat (limited to 'django')
| -rw-r--r-- | django/utils/text.py | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/django/utils/text.py b/django/utils/text.py index 86d3b52741..26631641e9 100644 --- a/django/utils/text.py +++ b/django/utils/text.py @@ -67,8 +67,14 @@ def wrap(text, width): class Truncator(SimpleLazyObject): """ An object used to truncate text, either by characters or words. + + When truncating HTML text (either chars or words), input will be limited to + at most `MAX_LENGTH_HTML` characters. """ + # 5 million characters are approximately 4000 text pages or 3 web pages. + MAX_LENGTH_HTML = 5_000_000 + def __init__(self, text): super().__init__(lambda: str(text)) @@ -164,6 +170,11 @@ class Truncator(SimpleLazyObject): if words and length <= 0: return "" + size_limited = False + if len(text) > self.MAX_LENGTH_HTML: + text = text[: self.MAX_LENGTH_HTML] + size_limited = True + html4_singlets = ( "br", "col", @@ -220,10 +231,14 @@ class Truncator(SimpleLazyObject): # Add it to the start of the open tags list open_tags.insert(0, tagname) + truncate_text = self.add_truncation_text("", truncate) + if current_len <= length: + if size_limited and truncate_text: + text += truncate_text return text + out = text[:end_text_pos] - truncate_text = self.add_truncation_text("", truncate) if truncate_text: out += truncate_text # Close any tags still open |
