@node9/proxy 2.8.3 → 2.8.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/dist/cli.js +1576 -506
- package/dist/cli.mjs +1576 -506
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2274,6 +2274,10 @@ function analyzeShellCommand(command) {
|
|
|
2274
2274
|
return { actions, paths, allTokens };
|
|
2275
2275
|
}
|
|
2276
2276
|
var DEFAULT_EGRESS_ALLOWLIST = [
|
|
2277
|
+
// node9's own control plane (api, app, dev-api, staging and the apex).
|
|
2278
|
+
// Without it, turning egress on asks the user to approve node9 itself.
|
|
2279
|
+
// A user `deny` entry still wins over this list, see evaluateEgress.
|
|
2280
|
+
"*.node9.ai",
|
|
2277
2281
|
"*.github.com",
|
|
2278
2282
|
"*.githubusercontent.com",
|
|
2279
2283
|
"*.npmjs.org",
|
package/dist/index.mjs
CHANGED
|
@@ -2244,6 +2244,10 @@ function analyzeShellCommand(command) {
|
|
|
2244
2244
|
return { actions, paths, allTokens };
|
|
2245
2245
|
}
|
|
2246
2246
|
var DEFAULT_EGRESS_ALLOWLIST = [
|
|
2247
|
+
// node9's own control plane (api, app, dev-api, staging and the apex).
|
|
2248
|
+
// Without it, turning egress on asks the user to approve node9 itself.
|
|
2249
|
+
// A user `deny` entry still wins over this list, see evaluateEgress.
|
|
2250
|
+
"*.node9.ai",
|
|
2247
2251
|
"*.github.com",
|
|
2248
2252
|
"*.githubusercontent.com",
|
|
2249
2253
|
"*.npmjs.org",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@node9/proxy",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.5",
|
|
4
4
|
"description": "The Sudo Command for AI Agents. Execution Security for Claude Code, Codex, Gemini, Cursor, Opencode, Pi, and any MCP server.",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"module": "./dist/index.mjs",
|