René's URL Explorer Experiment


Title: Silent process crash: /GS stack-buffer-overrun in libuv Windows TCP-connect path under high outbound HTTP-connection volume (24.15.0; appears fixed in 24.16.0) · Issue #63620 · nodejs/node · GitHub

Open Graph Title: Silent process crash: /GS stack-buffer-overrun in libuv Windows TCP-connect path under high outbound HTTP-connection volume (24.15.0; appears fixed in 24.16.0) · Issue #63620 · nodejs/node

X Title: Silent process crash: /GS stack-buffer-overrun in libuv Windows TCP-connect path under high outbound HTTP-connection volume (24.15.0; appears fixed in 24.16.0) · Issue #63620 · nodejs/node

Description: Version Reproduces on v24.15.0 (libuv 1.51.0). Appears fixed on v24.16.0 (libuv 1.52.1). Also clean on v25.9.0 (libuv 1.51.0). Platform Windows x64 (GitHub-hosted `windows-latest`). Not observed on Linux. Subsystem libuv (Windows TCP con...

Open Graph Description: Version Reproduces on v24.15.0 (libuv 1.51.0). Appears fixed on v24.16.0 (libuv 1.52.1). Also clean on v25.9.0 (libuv 1.51.0). Platform Windows x64 (GitHub-hosted `windows-latest`). Not observed on...

X Description: Version Reproduces on v24.15.0 (libuv 1.51.0). Appears fixed on v24.16.0 (libuv 1.52.1). Also clean on v25.9.0 (libuv 1.51.0). Platform Windows x64 (GitHub-hosted `windows-latest`). Not observed on...

Opengraph URL: https://github.com/nodejs/node/issues/63620

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Silent process crash: /GS stack-buffer-overrun in libuv Windows TCP-connect path under high outbound HTTP-connection volume (24.15.0; appears fixed in 24.16.0)","articleBody":"### Version\n\nReproduces on **v24.15.0** (libuv 1.51.0). Appears fixed on **v24.16.0** (libuv 1.52.1). Also clean on **v25.9.0** (libuv 1.51.0).\n\n### Platform\n\n```text\nWindows x64 (GitHub-hosted `windows-latest`). Not observed on Linux.\n```\n\n### Subsystem\n\nlibuv (Windows TCP connect: `uv__tcp_connect` / `uv__tcp_try_connect`), reached via `net`/`http` client APIs and `TCPWrap::Connect`.\n\n### What steps will reproduce the bug?\n\nA Node process that makes a high volume of short-lived **outbound** HTTP connections on Windows intermittently dies with no catchable error. Pure-Node repro — save as `repro.js` in an empty directory and run a few times on Windows + Node 24.15.0:\n\n```js\n// repro.js — no dependencies. Storms short-lived loopback HTTP connections\n// (keep-alive off) against an in-process server.\nconst http = require('http');\nconst HOST = process.env.REPRO_HOST || '127.0.0.1'; // 127.0.0.1 reproduced 100% of trials\nconst DURATION_MS = Number(process.env.DURATION_MS || 60000);\nconst CONCURRENCY = Number(process.env.CONCURRENCY || 96);\n\nconst server = http.createServer((req, res) =\u003e { res.end('ok'); });\nserver.listen(0, HOST, () =\u003e {\n  const { port } = server.address();\n  const agent = new http.Agent({ keepAlive: false, maxSockets: CONCURRENCY });\n  const end = Date.now() + DURATION_MS;\n  let outstanding = 0, made = 0, done = false;\n  const finish = () =\u003e { if (!done) { done = true; console.log(`done: ${made} reqs, no crash`); server.close(() =\u003e process.exit(0)); } };\n  const pump = () =\u003e {\n    while (outstanding \u003c CONCURRENCY \u0026\u0026 Date.now() \u003c end) {\n      made++; outstanding++;\n      const req = http.get({ host: HOST, port, agent }, (res) =\u003e { res.resume(); res.on('end', () =\u003e outstanding--); });\n      req.on('error', () =\u003e outstanding--);\n    }\n    if (Date.now() \u003c end) setImmediate(pump);\n    else if (outstanding === 0) finish();\n  };\n  const wd = setInterval(() =\u003e { if (Date.now() \u003e= end \u0026\u0026 (outstanding === 0 || Date.now() \u003e= end + 10000)) { clearInterval(wd); finish(); } }, 250);\n  wd.unref();\n  pump();\n});\n```\n\n```\nnode repro.js\n```\n\nTo capture the otherwise-invisible crash, enable a full dump on silent exit (elevated PowerShell) before running:\n\n```powershell\n$dumps = \"C:\\node-dumps\"; New-Item -ItemType Directory -Force -Path $dumps | Out-Null\n$ifeo = \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\node.exe\"\n$spe  = \"HKLM:\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\SilentProcessExit\\node.exe\"\nNew-Item -Path $ifeo -Force | Out-Null\nNew-ItemProperty -Path $ifeo -Name GlobalFlag     -PropertyType String -Value \"0x200\" -Force | Out-Null  # FLG_MONITOR_SILENT_PROCESS_EXIT\nNew-Item -Path $spe -Force | Out-Null\nNew-ItemProperty -Path $spe -Name ReportingMode   -PropertyType DWord  -Value 2 -Force | Out-Null         # LOCAL_DUMP\nNew-ItemProperty -Path $spe -Name LocalDumpFolder -PropertyType String -Value $dumps -Force | Out-Null\nNew-ItemProperty -Path $spe -Name DumpType        -PropertyType DWord  -Value 2 -Force | Out-Null         # full memory\n```\n\n### How often does it reproduce? Is there a required condition?\n\nRequired condition: Windows + Node 24.0–24.15 (libuv 1.50/1.51) + a high rate of short-lived **outbound** HTTP connections. On 24.15.0 it crashed in **4/4** CI jobs with `REPRO_HOST=127.0.0.1` and **2/4** with `localhost` (each job = 4 × 60 s trials). Address-family independent (both `sockaddr_in` and `sockaddr_in6`). A raw `net.connect()` + immediate `destroy()` storm did **not** trigger it — the HTTP request/response round-trip (or `http.Agent` connect setup) seems required, not the bare TCP connect.\n\n### What is the expected behavior? Why is that the expected behavior?\n\nThe connection storm runs to completion (prints `done: …`) and the process exits 0, as it does on Linux and on Node 24.16.0 / 25.x.\n\n### What do you see instead?\n\nThe process dies mid-run with no `'exit'`/`uncaughtException`/`unhandledRejection`, no `--report-on-fatalerror`/`--report-on-signal` output, and no standard SEH/WER crash record — a \"silent\" death. A full-memory dump shows the main thread executing a `/GS` stack-cookie failure (a stack buffer overrun) in the connect path:\n\n```\nnode::TCPWrap::Connect\u003csockaddr_in6\u003e           (also \u003csockaddr_in\u003e)\n  → uv_tcp_connect\n    → uv__tcp_connect / uv__tcp_try_connect     (identical-COMDAT-folded)\n      → __security_check_cookie → __report_gsfailure → __fastfail(2)\n```\n\n`RIP` is inside `__report_gsfailure`; bytes at `RIP` are `cd 29` (`int 29h` = `__fastfail`); `ecx = 2` (`FAST_FAIL_STACK_COOKIE_CHECK_FAILURE`). The corrupted frame is `uv__tcp_connect`'s (~0x218 bytes); in every captured sample the `/GS` cookie was overwritten but the saved return address (the slot above it) was intact, so `/GS` turned the corruption into a controlled crash. Symbolized against the official `node.pdb` for 24.15.0 (debug-id `3c541b69-34a1-cd3f-…`).\n\n### Additional information\n\n**Version bisect** (Windows `windows-latest`; each cell = jobs × 4 × 60 s trials):\n\n| Node | bundled libuv | `localhost` (→ ::1) | `127.0.0.1` |\n|---|---|---|---|\n| 24.15.0 | 1.51.0 | crashes (2/4) | **crashes (4/4)** |\n| 24.16.0 | 1.52.1 | clean (0/4) | clean (0/4) |\n| 25.9.0 | 1.51.0 | clean (0/4) | clean (0/4) |\n\nIt **appears already fixed in 24.16.0**, so the main asks are:\n1. Can you **confirm the fix is intentional and complete** on the 24.x LTS line? Note 25.9.0 is clean *despite carrying the same nominal libuv (1.51.0)* as the broken 24.15.0, so the fix doesn't map to the upstream libuv tag alone — likely a back-ported libuv patch and/or a Node/V8/build difference present in 24.16.0 and 25.x but not 24.15.0. Identifying the exact commit would confirm coverage.\n2. Since it's a **memory-safety defect** (out-of-bounds stack write, CWE-121) that causes an unrecoverable crash, does it warrant a **security advisory** so users still on 24.0–24.15 are notified to upgrade? I've kept a private/HackerOne-formatted writeup ready if you'd prefer to handle it through the security process — happy to route it there instead.\n\n**Relevant source:**\n- Node: `src/tcp_wrap.cc` — `TCPWrap::Connect` (https://github.com/nodejs/node/blob/main/src/tcp_wrap.cc)\n- libuv (bundled at `deps/uv`): `src/win/tcp.c` — `uv_tcp_connect` / `uv__tcp_connect` (https://github.com/libuv/libuv/blob/v1.x/src/win/tcp.c)\n\nI can provide the symbolized full-memory minidump(s), the complete faulting-thread stack + registers, the full bisect matrix, and the non-triggering raw-TCP variant for diffing.","author":{"url":"https://github.com/JohnMcLear","@type":"Person","name":"JohnMcLear"},"datePublished":"2026-05-28T14:49:29.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/63620/node/issues/63620"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:86a771f5-8202-a489-9c91-a50a90940342
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idB5B4:10FBE0:DE8661:13AAC10:6A4CAE76
html-safe-nonce0275dca60adf89d2e77885911a67d17d37017db6a208acc6f1ec03386d29e7b6
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJCNUI0OjEwRkJFMDpERTg2NjE6MTNBQUMxMDo2QTRDQUU3NiIsInZpc2l0b3JfaWQiOiI2MjY5ODI5NTMxNDgzMDI1MDE0IiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac5a18c1dbe6e745c0d5e1e5294886d4fd63a88ce61636084de4647dc8700b8bd1
hovercard-subject-tagissue:4541354651
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/nodejs/node/63620/issue_layout
twitter:imagehttps://opengraph.githubassets.com/56095b1962ac8309de6d6a233f8f8788a086fb58964cba60f35a787d332c1685/nodejs/node/issues/63620
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/56095b1962ac8309de6d6a233f8f8788a086fb58964cba60f35a787d332c1685/nodejs/node/issues/63620
og:image:altVersion Reproduces on v24.15.0 (libuv 1.51.0). Appears fixed on v24.16.0 (libuv 1.52.1). Also clean on v25.9.0 (libuv 1.51.0). Platform Windows x64 (GitHub-hosted `windows-latest`). Not observed on...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernameJohnMcLear
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/nodejs/node git https://github.com/nodejs/node.git
octolytics-dimension-user_id9950313
octolytics-dimension-user_loginnodejs
octolytics-dimension-repository_id27193779
octolytics-dimension-repository_nwonodejs/node
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id27193779
octolytics-dimension-repository_network_root_nwonodejs/node
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseae90d426644ca15e89bacceb72e51f4e9dbf85f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/nodejs/node/issues/63620#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fnodejs%2Fnode%2Fissues%2F63620
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/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/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/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%2Fnodejs%2Fnode%2Fissues%2F63620
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%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=nodejs%2Fnode
Reloadhttps://github.com/nodejs/node/issues/63620
Reloadhttps://github.com/nodejs/node/issues/63620
Reloadhttps://github.com/nodejs/node/issues/63620
Please reload this pagehttps://github.com/nodejs/node/issues/63620
nodejs https://github.com/nodejs
nodehttps://github.com/nodejs/node
Please reload this pagehttps://github.com/nodejs/node/issues/63620
Notifications https://github.com/login?return_to=%2Fnodejs%2Fnode
Fork 36k https://github.com/login?return_to=%2Fnodejs%2Fnode
Star 118k https://github.com/login?return_to=%2Fnodejs%2Fnode
Code https://github.com/nodejs/node
Issues 1.4k https://github.com/nodejs/node/issues
Pull requests 964 https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality 0 https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Code https://github.com/nodejs/node
Issues https://github.com/nodejs/node/issues
Pull requests https://github.com/nodejs/node/pulls
Actions https://github.com/nodejs/node/actions
Projects https://github.com/nodejs/node/projects
Security and quality https://github.com/nodejs/node/security
Insights https://github.com/nodejs/node/pulse
Silent process crash: /GS stack-buffer-overrun in libuv Windows TCP-connect path under high outbound HTTP-connection volume (24.15.0; appears fixed in 24.16.0)https://github.com/nodejs/node/issues/63620#top
https://github.com/JohnMcLear
JohnMcLearhttps://github.com/JohnMcLear
on May 28, 2026https://github.com/nodejs/node/issues/63620#issue-4541354651
https://github.com/nodejs/node/blob/main/src/tcp_wrap.cchttps://github.com/nodejs/node/blob/main/src/tcp_wrap.cc
https://github.com/libuv/libuv/blob/v1.x/src/win/tcp.chttps://github.com/libuv/libuv/blob/v1.x/src/win/tcp.c
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.