Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.2k
[3.11] gh-120384: gh-120298: Fix array-out-of-bounds & use after freelist
#121345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:3.11
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
pythonGH-120442) (python#120825)pythongh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (pythonGH-120442)(cherry picked from commit8334a1b)Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
This backports the fix topython#120298.commit idb884536
list_ass_subscript
list
For consideration as a security related backport. To trigger these, people already need the ability to run arbitrary Python code. So we don't consider this a vulnerability given the existing capabilities. But it could make the life of some projects built on top of Python a little better. Such projects are already on undefined behavior grounds if they consider anything executing Python bytecode to not be able to escape that to begin with. Because CPython does not guarantee any such thing. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Just commenting that I am happy to get this fix backported once it's reviewed and tested
Uh oh!
There was an error while loading.Please reload this page.
gh-120384: Fix array-out-of-bounds crash in
list_ass_subscript
(GH-120442) (cherry picked from commit8334a1b in the 3.12 branch)gh-120298: Fix use after free in
list_richcompare
.