Keep diagnostics strictly local

Discard legacy network allowlists, report the actual loopback-only runtime contract, and return a generic safe error if the final diagnostic reply boundary fails.
This commit is contained in:
Sucukdeluxe
2026-08-13 21:13:34 +02:00
parent 3ced148ee8
commit a7fb3421f1
2 changed files with 16 additions and 5 deletions
+11
View File
@@ -1,5 +1,7 @@
const { test } = require('node:test');
const assert = require('node:assert');
const fs = require('node:fs');
const path = require('node:path');
const { createAgent } = require('../lib/diagnostics-agent');
const { valueScrub } = require('../lib/support-bundle');
@@ -97,3 +99,12 @@ test('agent fails closed when response redaction fails', () => {
assert.deepEqual(result, { ok: false, error: 'diagnostic response could not be safely returned' });
assert.ok(!JSON.stringify(result).includes('must-not-leak'));
});
test('main process keeps diagnostics local and fails closed at its final reply boundary', () => {
const source = fs.readFileSync(path.join(__dirname, '..', 'main.js'), 'utf8');
assert.match(source, /function _diagBindHost\(\)\s*{\s*return '127\.0\.0\.1'/);
assert.match(source, /function _diagPublicHost\(\)\s*{\s*return '127\.0\.0\.1'/);
assert.match(source, /function _diagAllowlist\(\)\s*{\s*return \[\]/);
assert.match(source, /bindMode: 'local'/);
assert.match(source, /catch\s*{\s*result = { ok: false, error: 'diagnostic response could not be safely returned' }/);
});