Post #3868938
2026-07-16 21:28 UTC
@mttaggart@infosec.exchange @Sempf@infosec.exchange @wdormann@infosec.exchange @ajn142@infosec.exchange @ifin@infosec.exchange
This is probably it:
https://github.com/microsoft/vscode/blob/77f74446ac8fe1910f56b88d6ac3acdb1ac827e1/src/vs/platform/agentHost/node/agentHostGitService.ts#L678
https://nodejs.org/api/child_process.html
From my limited understanding this agentHost is a execution environment sandbox for agents. There was also Codex and Anthropic SDKs near those files so may be worth a look.
Replies (2)
-
@wdormann@infosec.exchange 2026-07-16 21:49
@sharkfie@infosec.exchange @mttaggart@infosec.exchange @Sempf@infosec.exchange @ajn142@infosec.exchange @ifin@infosec.exchange Sounds about right. This is the stack trace on the program launch. uv_spawn() is a node.js thing, IIUC.
-
@ajn142@infosec.exchange 2026-07-16 21:57
@sharkfie@infosec.exchange @mttaggart@infosec.exchange @Sempf@infosec.exchange @wdormann@infosec.exchange @ifin@infosec.exchange you mean the _runGit function calling cp.execFile (renamed child_process) with the argument ‘git’ ?