forked from python/cpython
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
modernize the test, expand the NEWS entry.
- Loading branch information
Showing
2 changed files
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 7 additions & 2 deletions
9
Misc/NEWS.d/next/Security/2024-05-24-21-00-52.gh-issue-119511.jKrXQ8.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
Fix a vulnerability in the :mod:`imaplib` module, when connecting to a | ||
malicious server could cause an arbitrary amount of memory to be consumed. | ||
Fix a potential denial of service vulnerability in the :mod:`imaplib` module. | ||
When connecting to a malicious server, it could cause an arbitrary amount of | ||
memory to be allocated. On many systems this is harmless as unused virtual | ||
memory is only a mapping, but if this hit a virtual address size limit it could | ||
lead to a :exc:`MemoryError` or other process crash. On unusual systems or | ||
builds where all allocated memory is touched and backed by actual ram or | ||
storage it could've consumed resources doing so until similarly crashing. |