René's URL Explorer Experiment


Title: gh-144475: Fix use-after-free in functools.partial.__repr__() by Nicolas0315 · Pull Request #145395 · python/cpython · GitHub

Open Graph Title: gh-144475: Fix use-after-free in functools.partial.__repr__() by Nicolas0315 · Pull Request #145395 · python/cpython

X Title: gh-144475: Fix use-after-free in functools.partial.__repr__() by Nicolas0315 · Pull Request #145395 · python/cpython

Description: Summary Fix a heap-buffer-overflow (use-after-free) in functools.partial.__repr__() where a user-defined __repr__() on an argument could mutate the partial object via __setstate__(), freeing the args tuple while partial_repr() was still iterating over it. Root Cause partial_repr() captured the size of pto->args before the loop and accessed tuple items via borrowed references (PyTuple_GET_ITEM). If a __repr__() called during %R formatting invoked pto.__setstate__() with a new (smaller) args tuple, the original tuple was freed while iteration continued, causing an out-of-bounds read. Fix Hold strong references (Py_NewRef) to pto->args, pto->kw, and pto->fn before iterating/using them. This ensures the underlying objects remain alive even if user code mutates the partial via __setstate__() during formatting. The same pattern is applied to: pto->args: The positional arguments tuple iterated in the loop pto->kw: The keyword arguments dict iterated via PyDict_Next pto->fn: The callable whose __repr__ is invoked via %R Reproducer (from the issue) import gc from functools import partial g_partial = None class EvilObject: def __init__(self, name, is_trigger=False): self.name = name self.is_trigger = is_trigger self.triggered = False def __repr__(self): global g_partial if self.is_trigger and not self.triggered and g_partial is not None: self.triggered = True new_state = (lambda x: x, ("replaced",), {}, None) g_partial.__setstate__(new_state) gc.collect() return f"EvilObject({self.name})" evil1 = EvilObject("trigger", is_trigger=True) evil2 = EvilObject("victim1") evil3 = EvilObject("victim2") p = partial(lambda: None, evil1, evil2, evil3) g_partial = p del evil1, evil2, evil3 repr(p) # heap-buffer-overflow without fix Fixes #144475. Issue: gh-144475

Open Graph Description: Summary Fix a heap-buffer-overflow (use-after-free) in functools.partial.__repr__() where a user-defined __repr__() on an argument could mutate the partial object via __setstate__(), freeing the ar...

X Description: Summary Fix a heap-buffer-overflow (use-after-free) in functools.partial.__repr__() where a user-defined __repr__() on an argument could mutate the partial object via __setstate__(), freeing the ar...

Opengraph URL: https://github.com/python/cpython/pull/145395

X: @github

direct link

Domain: github.com

route-pattern/:user_id/:repository/pull/:id/files(.:format)
route-controllerpull_requests
route-actionfiles
fetch-noncev2:2be9a181-aa4e-8260-9568-69b6b287cccb
current-catalog-service-hashae870bc5e265a340912cde392f23dad3671a0a881730ffdadd82f2f57d81641b
request-idC558:1A2FA1:A5871B4:A8F998F:6A50B103
html-safe-noncec1c6f7c46223672bda38bcf046bcdbad9e50ad2438b941fbd77cc992c06d939b
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDNTU4OjFBMkZBMTpBNTg3MUI0OkE4Rjk5OEY6NkE1MEIxMDMiLCJ2aXNpdG9yX2lkIjoiNjA5MDUxMjczOTkwOTgwODM4NyIsInJlZ2lvbl9lZGdlIjoic2VhIiwicmVnaW9uX3JlbmRlciI6InNlYSJ9
visitor-hmac89554bc91b462263ff71c50dbb5f9aa9ae772bed938b0e9e90b9c744b3641924
hovercard-subject-tagpull_request:3341299033
github-keyboard-shortcutsrepository,pull-request-list,pull-request-conversation,pull-request-files-changed,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///pull_requests/show/files
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/python/cpython/pull/145395/files
twitter:imagehttps://avatars.githubusercontent.com/u/40846197?s=400&v=4
twitter:cardsummary_large_image
og:imagehttps://avatars.githubusercontent.com/u/40846197?s=400&v=4
og:image:altSummary Fix a heap-buffer-overflow (use-after-free) in functools.partial.__repr__() where a user-defined __repr__() on an argument could mutate the partial object via __setstate__(), freeing the ar...
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
Noned6dc8294eb500fa36bbc57472d61fe87c522f9c3c1d64f70f4926f66a66a7efb
turbo-cache-controlno-preview
diff-viewunified
go-importgithub.com/python/cpython git https://github.com/python/cpython.git
octolytics-dimension-user_id1525981
octolytics-dimension-user_loginpython
octolytics-dimension-repository_id81598961
octolytics-dimension-repository_nwopython/cpython
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id81598961
octolytics-dimension-repository_network_root_nwopython/cpython
turbo-body-classeslogged-out env-production page-responsive full-width
disable-turbotrue
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release7ac0ad2f2c7e4b9056617355fd9e33e22b0c8df9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/python/cpython/pull/145395/files#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F145395%2Ffiles
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython%2Fcpython%2Fpull%2F145395%2Ffiles
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fpull_requests%2Fshow%2Ffiles&source=header-repo&source_repo=python%2Fcpython
Reloadhttps://github.com/python/cpython/pull/145395/files
Reloadhttps://github.com/python/cpython/pull/145395/files
Reloadhttps://github.com/python/cpython/pull/145395/files
Please reload this pagehttps://github.com/python/cpython/pull/145395/files
python https://github.com/python
cpythonhttps://github.com/python/cpython
Please reload this pagehttps://github.com/python/cpython/pull/145395/files
Notifications https://github.com/login?return_to=%2Fpython%2Fcpython
Fork 35k https://github.com/login?return_to=%2Fpython%2Fcpython
Star 73.7k https://github.com/login?return_to=%2Fpython%2Fcpython
Code https://github.com/python/cpython
Issues 5k+ https://github.com/python/cpython/issues
Pull requests 2.3k https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality 0 https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Code https://github.com/python/cpython
Issues https://github.com/python/cpython/issues
Pull requests https://github.com/python/cpython/pulls
Actions https://github.com/python/cpython/actions
Projects https://github.com/python/cpython/projects
Security and quality https://github.com/python/cpython/security
Insights https://github.com/python/cpython/pulse
Sign up for GitHub https://github.com/signup?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
terms of servicehttps://docs.github.com/terms
privacy statementhttps://docs.github.com/privacy
Sign inhttps://github.com/login?return_to=%2Fpython%2Fcpython%2Fissues%2Fnew%2Fchoose
Nicolas0315https://github.com/Nicolas0315
python:mainhttps://github.com/python/cpython/tree/main
Nicolas0315:fix/partial-repr-use-after-freehttps://github.com/Nicolas0315/cpython/tree/fix/partial-repr-use-after-free
Conversation 4 https://github.com/python/cpython/pull/145395
Commits 3 https://github.com/python/cpython/pull/145395/commits
Checks 43 https://github.com/python/cpython/pull/145395/checks
Files changed https://github.com/python/cpython/pull/145395/files
Please reload this pagehttps://github.com/python/cpython/pull/145395/files
gh-144475: Fix use-after-free in functools.partial.__repr__() https://github.com/python/cpython/pull/145395/files#top
Show all changes 3 commits https://github.com/python/cpython/pull/145395/files
a445c16 gh-144475: Fix use-after-free in functools.partial.__repr__() Nicolas0315 Mar 1, 2026 https://github.com/python/cpython/pull/145395/commits/a445c16d0b6acd5408ca3ca1bbb5d4b92e54f160
7e73c5d 📜🤖 Added by blurb_it. Nicolas0315 Mar 1, 2026 https://github.com/python/cpython/pull/145395/commits/7e73c5d50fda33d56a87b20e49c646ad3f04180c
6c18a9e Fix NEWS entry Sphinx references Nicolas0315 Mar 1, 2026 https://github.com/python/cpython/pull/145395/commits/6c18a9e335ec42f001c9c95dc8c5ff944cf28b85
Clear filters https://github.com/python/cpython/pull/145395/files
Please reload this pagehttps://github.com/python/cpython/pull/145395/files
Please reload this pagehttps://github.com/python/cpython/pull/145395/files
2026-03-02-02-30-00.gh-issue-144475.CfVOu8Hi.rst https://github.com/python/cpython/pull/145395/files#diff-ec46d5c4e5b0373fa4ffa113ee1d11528a0a3fb6af69fe315c727b5d89ccd27b
_functoolsmodule.c https://github.com/python/cpython/pull/145395/files#diff-d1deea0fb29260d389bac1b24c3ec3631e843d177e85c0e93d5cf50966dee630
Misc/NEWS.d/next/Library/2026-03-02-02-30-00.gh-issue-144475.CfVOu8Hi.rsthttps://github.com/python/cpython/pull/145395/files#diff-ec46d5c4e5b0373fa4ffa113ee1d11528a0a3fb6af69fe315c727b5d89ccd27b
View file https://github.com/Nicolas0315/cpython/blob/6c18a9e335ec42f001c9c95dc8c5ff944cf28b85/Misc/NEWS.d/next/Library/2026-03-02-02-30-00.gh-issue-144475.CfVOu8Hi.rst
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/145395/{{ revealButtonHref }}
https://github.com/python/cpython/blob/main/.github/CODEOWNERS#L477
Modules/_functoolsmodule.chttps://github.com/python/cpython/pull/145395/files#diff-d1deea0fb29260d389bac1b24c3ec3631e843d177e85c0e93d5cf50966dee630
View file https://github.com/Nicolas0315/cpython/blob/6c18a9e335ec42f001c9c95dc8c5ff944cf28b85/Modules/_functoolsmodule.c
Open in desktop https://desktop.github.com
https://github.co/hiddenchars
https://github.com/python/cpython/pull/145395/{{ revealButtonHref }}
https://github.com/python/cpython/pull/145395/files#diff-d1deea0fb29260d389bac1b24c3ec3631e843d177e85c0e93d5cf50966dee630
https://github.com/python/cpython/pull/145395/files#diff-d1deea0fb29260d389bac1b24c3ec3631e843d177e85c0e93d5cf50966dee630
https://github.com/python/cpython/pull/145395/files#diff-d1deea0fb29260d389bac1b24c3ec3631e843d177e85c0e93d5cf50966dee630
Please reload this pagehttps://github.com/python/cpython/pull/145395/files
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.