@node9/proxy 2.8.4 → 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/dist/cli.js +4 -0
- package/dist/cli.mjs +4 -0
- package/dist/index.js +4 -0
- package/dist/index.mjs +4 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -3509,6 +3509,10 @@ var init_dist = __esm({
|
|
|
3509
3509
|
deriveRedirOp("cat <<-X\nX")
|
|
3510
3510
|
]);
|
|
3511
3511
|
DEFAULT_EGRESS_ALLOWLIST = [
|
|
3512
|
+
// node9's own control plane (api, app, dev-api, staging and the apex).
|
|
3513
|
+
// Without it, turning egress on asks the user to approve node9 itself.
|
|
3514
|
+
// A user `deny` entry still wins over this list, see evaluateEgress.
|
|
3515
|
+
"*.node9.ai",
|
|
3512
3516
|
"*.github.com",
|
|
3513
3517
|
"*.githubusercontent.com",
|
|
3514
3518
|
"*.npmjs.org",
|
package/dist/cli.mjs
CHANGED
|
@@ -3513,6 +3513,10 @@ var init_dist = __esm({
|
|
|
3513
3513
|
deriveRedirOp("cat <<-X\nX")
|
|
3514
3514
|
]);
|
|
3515
3515
|
DEFAULT_EGRESS_ALLOWLIST = [
|
|
3516
|
+
// node9's own control plane (api, app, dev-api, staging and the apex).
|
|
3517
|
+
// Without it, turning egress on asks the user to approve node9 itself.
|
|
3518
|
+
// A user `deny` entry still wins over this list, see evaluateEgress.
|
|
3519
|
+
"*.node9.ai",
|
|
3516
3520
|
"*.github.com",
|
|
3517
3521
|
"*.githubusercontent.com",
|
|
3518
3522
|
"*.npmjs.org",
|
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",
|