summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNico-Posada <102486290+Nico-Posada@users.noreply.github.com>2024-11-02 07:46:00 (GMT)
committerGitHub <noreply@github.com>2024-11-02 07:46:00 (GMT)
commitf032f6ba8fec6fab35edeec0eb40cd73e9d58928 (patch)
tree36195cbe7b3e64d591688a3593290b70cff8477b /Misc/NEWS.d
parent914356f4d485e378eb692e57d822b893acc0c0da (diff)
downloadcpython-f032f6ba8fec6fab35edeec0eb40cd73e9d58928.zip
cpython-f032f6ba8fec6fab35edeec0eb40cd73e9d58928.tar.gz
cpython-f032f6ba8fec6fab35edeec0eb40cd73e9d58928.tar.bz2
gh-126138: Fix use-after-free in `_asyncio.Task` by evil `__getattribute__` (#126305)
Co-authored-by: Carol Willing <carolcode@willingconsulting.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-11-01-14-31-41.gh-issue-126138.yTniOG.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-01-14-31-41.gh-issue-126138.yTniOG.rst b/Misc/NEWS.d/next/Library/2024-11-01-14-31-41.gh-issue-126138.yTniOG.rst
new file mode 100644
index 0000000..459eebc
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-11-01-14-31-41.gh-issue-126138.yTniOG.rst
@@ -0,0 +1,3 @@
+Fix a use-after-free crash on :class:`asyncio.Task` objects
+whose underlying coroutine yields an object that implements
+an evil :meth:`~object.__getattribute__`. Patch by Nico Posada.