fullcourtdefense-cli 1.21.32 → 1.21.35
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/commands/daemon.js +133 -10
- package/dist/commands/shellGuard.d.ts +7 -0
- package/dist/commands/shellGuard.js +49 -21
- package/dist/config.d.ts +31 -0
- package/dist/config.js +150 -10
- package/dist/credentialStore.d.ts +19 -0
- package/dist/credentialStore.js +136 -0
- package/dist/distress.d.ts +80 -0
- package/dist/distress.js +183 -0
- package/dist/runtimeConfig.d.ts +1 -1
- package/dist/runtimeConfig.js +11 -1
- package/dist/selfTest.d.ts +38 -0
- package/dist/selfTest.js +149 -0
- package/dist/selfUpdate.d.ts +30 -0
- package/dist/selfUpdate.js +129 -3
- package/dist/telemetry.d.ts +13 -0
- package/dist/telemetry.js +6 -0
- package/dist/version.json +1 -1
- package/package.json +9 -1
package/dist/commands/daemon.js
CHANGED
|
@@ -48,6 +48,8 @@ const os = __importStar(require("os"));
|
|
|
48
48
|
const path = __importStar(require("path"));
|
|
49
49
|
const child_process_1 = require("child_process");
|
|
50
50
|
const config_1 = require("../config");
|
|
51
|
+
const distress_1 = require("../distress");
|
|
52
|
+
const selfTest_1 = require("../selfTest");
|
|
51
53
|
const daemonForensics_1 = require("../daemonForensics");
|
|
52
54
|
const securityAgents_1 = require("../securityAgents");
|
|
53
55
|
const mcpGateway_1 = require("./mcpGateway");
|
|
@@ -345,9 +347,13 @@ async function runDaemon(args, config) {
|
|
|
345
347
|
// that would restart a crashed process instantly.
|
|
346
348
|
process.on('uncaughtException', error => {
|
|
347
349
|
log(`Uncaught exception (daemon continues): ${error?.stack || String(error)}`);
|
|
350
|
+
// Ledger the unknown: failures nobody predicted still become structured,
|
|
351
|
+
// fleet-visible telemetry (code unexpected_error) on the next heartbeat.
|
|
352
|
+
(0, distress_1.reportUnexpected)('daemon', error);
|
|
348
353
|
});
|
|
349
354
|
process.on('unhandledRejection', reason => {
|
|
350
355
|
log(`Unhandled rejection (daemon continues): ${reason?.stack || String(reason)}`);
|
|
356
|
+
(0, distress_1.reportUnexpected)('daemon', reason);
|
|
351
357
|
});
|
|
352
358
|
const creds = (0, config_1.resolveCliCredentials)(config, {
|
|
353
359
|
shieldId: args.shieldId,
|
|
@@ -536,7 +542,9 @@ async function runDaemon(args, config) {
|
|
|
536
542
|
return;
|
|
537
543
|
try {
|
|
538
544
|
const raw = fs.readFileSync(logFile(), 'utf8');
|
|
539
|
-
|
|
545
|
+
// 200 lines (~half a day of routine ticks): enough context to diagnose a
|
|
546
|
+
// failure loop remotely without asking the customer to paste anything.
|
|
547
|
+
const lines = raw.split(/\r?\n/).filter(line => line.trim()).slice(-200);
|
|
540
548
|
const identity = (0, machineIdentity_1.getMachineIdentity)();
|
|
541
549
|
await fetch(`${creds.apiUrl}/api/cli/machines/log`, {
|
|
542
550
|
method: 'POST',
|
|
@@ -550,6 +558,64 @@ async function runDaemon(args, config) {
|
|
|
550
558
|
}
|
|
551
559
|
catch { /* log shipping is best-effort */ }
|
|
552
560
|
};
|
|
561
|
+
// Ship a structured diagnostics payload (support bundle / self-test report)
|
|
562
|
+
// to the machine record. Works key-less too — a machine whose credential
|
|
563
|
+
// store is broken is EXACTLY the one whose diagnostics we need (the backend
|
|
564
|
+
// verifies the machine binding and flags the reduced trust level).
|
|
565
|
+
const uploadDiagnostics = async (payload) => {
|
|
566
|
+
if (!creds.shieldId)
|
|
567
|
+
return false;
|
|
568
|
+
try {
|
|
569
|
+
const identity = (0, machineIdentity_1.getMachineIdentity)();
|
|
570
|
+
const resp = await fetch(`${creds.apiUrl}/api/cli/machines/diagnostics`, {
|
|
571
|
+
method: 'POST',
|
|
572
|
+
headers: {
|
|
573
|
+
'Content-Type': 'application/json',
|
|
574
|
+
...(creds.shieldKey ? { 'x-shield-key': creds.shieldKey } : {}),
|
|
575
|
+
},
|
|
576
|
+
body: JSON.stringify({ shieldId: creds.shieldId, machineId: identity.machineId, ...payload }),
|
|
577
|
+
signal: AbortSignal.timeout(15_000),
|
|
578
|
+
});
|
|
579
|
+
return resp.ok;
|
|
580
|
+
}
|
|
581
|
+
catch {
|
|
582
|
+
log('Diagnostics upload failed (network) — the bundle stays available locally.');
|
|
583
|
+
return false;
|
|
584
|
+
}
|
|
585
|
+
};
|
|
586
|
+
// The complete remote support bundle: everything we asked Alex and Alin to
|
|
587
|
+
// paste by hand during the lptx1110 incident, collected in one action.
|
|
588
|
+
// Metadata + our own logs only — never customer files, prompts, or secrets.
|
|
589
|
+
const buildSupportBundle = () => {
|
|
590
|
+
const powershell = (0, config_1.getPowershellHealth)();
|
|
591
|
+
let integrity;
|
|
592
|
+
try {
|
|
593
|
+
integrity = (0, integrity_1.getLocalIntegrityReport)({ requireDaemon: true });
|
|
594
|
+
}
|
|
595
|
+
catch (error) {
|
|
596
|
+
integrity = { error: error.message };
|
|
597
|
+
}
|
|
598
|
+
let daemonLogTail = [];
|
|
599
|
+
try {
|
|
600
|
+
daemonLogTail = fs.readFileSync(logFile(), 'utf8')
|
|
601
|
+
.split(/\r?\n/).map(line => line.trim()).filter(Boolean).slice(-200).map(line => line.slice(0, 400));
|
|
602
|
+
}
|
|
603
|
+
catch { /* log unreadable — the bundle reports everything else */ }
|
|
604
|
+
return {
|
|
605
|
+
cliVersion: cliVersion(),
|
|
606
|
+
platform: process.platform,
|
|
607
|
+
collectedAt: new Date().toISOString(),
|
|
608
|
+
daemonLogTail,
|
|
609
|
+
updaterLogTail: (0, selfUpdate_1.readUpdaterLogTail)(60),
|
|
610
|
+
distress: (0, distress_1.readDistressLedger)(),
|
|
611
|
+
credentialTrace: (0, config_1.getCredentialResolutionTrace)(),
|
|
612
|
+
powershell,
|
|
613
|
+
securityAgents: (0, securityAgents_1.getSecurityAgentsReport)()?.products,
|
|
614
|
+
integrity,
|
|
615
|
+
lastCrash: (0, daemonForensics_1.readPostmortem)(),
|
|
616
|
+
watchdogTaskInstalled: isWatchdogTaskInstalled(),
|
|
617
|
+
};
|
|
618
|
+
};
|
|
553
619
|
const reportMachineAction = async (actionId, status, detail) => {
|
|
554
620
|
if (!creds.shieldId)
|
|
555
621
|
return;
|
|
@@ -664,18 +730,37 @@ async function runDaemon(args, config) {
|
|
|
664
730
|
try {
|
|
665
731
|
let resultSummary = '';
|
|
666
732
|
if (action.type === 'health_check') {
|
|
667
|
-
|
|
733
|
+
// Deep self-test: actively EXERCISE every subsystem (DPAPI roundtrip,
|
|
734
|
+
// PowerShell mode, API reachability, authenticated fetch, hooks,
|
|
735
|
+
// updater task) instead of passively reporting. ~30s from the console
|
|
736
|
+
// to a per-subsystem pass/fail table.
|
|
737
|
+
log('Health check: running deep self-test across all subsystems…');
|
|
668
738
|
await uploadLogTail();
|
|
669
|
-
const
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
:
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
739
|
+
const identity = (0, machineIdentity_1.getMachineIdentity)();
|
|
740
|
+
const report = await (0, selfTest_1.runDeepSelfTest)({
|
|
741
|
+
creds,
|
|
742
|
+
developerName: identity.developerName,
|
|
743
|
+
machineName: identity.hostname,
|
|
744
|
+
machineId: identity.machineId,
|
|
745
|
+
isWatchdogTaskInstalled,
|
|
746
|
+
log,
|
|
747
|
+
});
|
|
748
|
+
await uploadDiagnostics({ selfTest: report });
|
|
749
|
+
resultSummary = (0, selfTest_1.summarizeSelfTest)(report);
|
|
750
|
+
log(`Health check: ${resultSummary}`);
|
|
751
|
+
if (!report.ok)
|
|
677
752
|
throw new Error(resultSummary);
|
|
678
753
|
}
|
|
754
|
+
else if (action.type === 'collect_diagnostics') {
|
|
755
|
+
log('Collect diagnostics: assembling support bundle (logs + distress ledger + environment — metadata only)…');
|
|
756
|
+
await uploadLogTail();
|
|
757
|
+
const bundle = buildSupportBundle();
|
|
758
|
+
const uploaded = await uploadDiagnostics({ bundle });
|
|
759
|
+
if (!uploaded)
|
|
760
|
+
throw new Error('Support bundle could not be uploaded (network or backend rejection).');
|
|
761
|
+
log(`Collect diagnostics: bundle uploaded (${bundle.daemonLogTail.length} log lines, ${bundle.distress.length} distress entries).`);
|
|
762
|
+
resultSummary = `Support bundle uploaded: ${bundle.daemonLogTail.length} daemon log lines, ${bundle.updaterLogTail.length} updater log lines, ${bundle.distress.length} distress signal(s), credential trace, environment health.`;
|
|
763
|
+
}
|
|
679
764
|
else if (action.type === 'policy_refresh') {
|
|
680
765
|
if (!creds.shieldId)
|
|
681
766
|
throw new Error('Shield not configured on this machine.');
|
|
@@ -777,9 +862,41 @@ async function runDaemon(args, config) {
|
|
|
777
862
|
await uploadLogTail();
|
|
778
863
|
}
|
|
779
864
|
};
|
|
865
|
+
// Distress channel: a machine whose credential store is broken cannot fetch
|
|
866
|
+
// the authenticated bundle — which is how remote actions are delivered — so
|
|
867
|
+
// the one machine an admin most needs to reach is unreachable. This key-less
|
|
868
|
+
// poll returns SIGNED actions only; safety comes from the Ed25519 signature
|
|
869
|
+
// + org/machine binding verified in executeMachineAction (the transport was
|
|
870
|
+
// never the trust anchor). Rescue path: queue upgrade_cli / collect_diagnostics
|
|
871
|
+
// from the console and the bricked machine still receives it.
|
|
872
|
+
const pollDistressActions = async () => {
|
|
873
|
+
if (!creds.shieldId || creds.shieldKey)
|
|
874
|
+
return;
|
|
875
|
+
try {
|
|
876
|
+
const identity = (0, machineIdentity_1.getMachineIdentity)();
|
|
877
|
+
const params = new URLSearchParams({ shieldId: creds.shieldId, machineId: identity.machineId });
|
|
878
|
+
const resp = await fetch(`${creds.apiUrl}/api/cli/machine-actions/pending?${params.toString()}`, {
|
|
879
|
+
method: 'GET',
|
|
880
|
+
signal: AbortSignal.timeout(8_000),
|
|
881
|
+
});
|
|
882
|
+
if (!resp.ok)
|
|
883
|
+
return;
|
|
884
|
+
const body = await resp.json().catch(() => ({}));
|
|
885
|
+
if (body.data?.machineAction) {
|
|
886
|
+
log(`Distress channel: received action ${body.data.machineAction.type} key-less — Ed25519 verification gates execution.`);
|
|
887
|
+
void executeMachineAction(body.data.machineAction);
|
|
888
|
+
}
|
|
889
|
+
}
|
|
890
|
+
catch { /* offline — next poll retries */ }
|
|
891
|
+
};
|
|
780
892
|
const pollBundle = async () => {
|
|
781
893
|
if (!creds.shieldId)
|
|
782
894
|
return;
|
|
895
|
+
if (!creds.shieldKey) {
|
|
896
|
+
// Credential-broken machine: stay reachable via the key-less signed-
|
|
897
|
+
// action channel while credential recovery keeps retrying.
|
|
898
|
+
await pollDistressActions();
|
|
899
|
+
}
|
|
783
900
|
const identity = (0, machineIdentity_1.getMachineIdentity)();
|
|
784
901
|
try {
|
|
785
902
|
const bundle = await (0, runtimeConfig_1.getRuntimeBundle)({
|
|
@@ -882,6 +999,9 @@ async function runDaemon(args, config) {
|
|
|
882
999
|
securityAgents: (0, securityAgents_1.getSecurityAgentsReport)()?.products,
|
|
883
1000
|
powershellSpawnOk: powershell?.spawnOk,
|
|
884
1001
|
powershellDecryptOk: powershell?.decryptOk,
|
|
1002
|
+
powershellLanguageMode: powershell?.languageMode,
|
|
1003
|
+
shieldKeySource: (0, config_1.getCredentialResolutionTrace)()?.shieldKeySource,
|
|
1004
|
+
distress: (0, distress_1.readDistressSnapshot)(),
|
|
885
1005
|
lastCrash: unreportedCrash
|
|
886
1006
|
? {
|
|
887
1007
|
version: unreportedCrash.version,
|
|
@@ -909,6 +1029,9 @@ async function runDaemon(args, config) {
|
|
|
909
1029
|
// Self-heal autostart + watchdog tasks: machines installed by older versions
|
|
910
1030
|
// (or where task creation failed once) must converge without a reinstall.
|
|
911
1031
|
ensureWindowsAutostartHealthy(log);
|
|
1032
|
+
// Converge pre-Node-updater machines onto the PowerShell-free updater task
|
|
1033
|
+
// (best-effort; needs an elevated daemon to rewrite a SYSTEM task).
|
|
1034
|
+
(0, selfUpdate_1.modernizeUpdaterTask)(log);
|
|
912
1035
|
const watched = refreshWatchTargets();
|
|
913
1036
|
log(`Watching ${watched} config file(s) across ${watchers.size} director${watchers.size === 1 ? 'y' : 'ies'}.`);
|
|
914
1037
|
// First: if this boot IS the post-upgrade relaunch, confirm the pending
|
|
@@ -39,6 +39,13 @@ export declare function evaluateShellCommand(line: string, rules?: ShellGuardRul
|
|
|
39
39
|
* No-op unless the guard is installed. Never throws.
|
|
40
40
|
*/
|
|
41
41
|
export declare function refreshShellGuardRules(): void;
|
|
42
|
+
/**
|
|
43
|
+
* The user's Documents folder from the shell-folder registry entry — the one
|
|
44
|
+
* place that knows about OneDrive/folder redirection. reg.exe is a plain
|
|
45
|
+
* system utility (not a scripting engine), so EDRs that block powershell.exe
|
|
46
|
+
* do not block this.
|
|
47
|
+
*/
|
|
48
|
+
export declare function resolveDocumentsFolder(): string;
|
|
42
49
|
export interface ShellGuardStatus {
|
|
43
50
|
supported: boolean;
|
|
44
51
|
installed: boolean;
|
|
@@ -37,6 +37,7 @@ exports.writeShellGuardRules = writeShellGuardRules;
|
|
|
37
37
|
exports.activeShellGuardRules = activeShellGuardRules;
|
|
38
38
|
exports.evaluateShellCommand = evaluateShellCommand;
|
|
39
39
|
exports.refreshShellGuardRules = refreshShellGuardRules;
|
|
40
|
+
exports.resolveDocumentsFolder = resolveDocumentsFolder;
|
|
40
41
|
exports.getShellGuardStatus = getShellGuardStatus;
|
|
41
42
|
exports.isShellGuardInstalled = isShellGuardInstalled;
|
|
42
43
|
exports.installShellGuardCommand = installShellGuardCommand;
|
|
@@ -510,30 +511,57 @@ function buildGuardPs1(nodePath, cliEntry) {
|
|
|
510
511
|
];
|
|
511
512
|
return lines.join('\r\n');
|
|
512
513
|
}
|
|
513
|
-
/**
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
514
|
+
/**
|
|
515
|
+
* The user's Documents folder from the shell-folder registry entry — the one
|
|
516
|
+
* place that knows about OneDrive/folder redirection. reg.exe is a plain
|
|
517
|
+
* system utility (not a scripting engine), so EDRs that block powershell.exe
|
|
518
|
+
* do not block this.
|
|
519
|
+
*/
|
|
520
|
+
function resolveDocumentsFolder() {
|
|
521
|
+
try {
|
|
522
|
+
const run = (0, child_process_1.spawnSync)('reg', [
|
|
523
|
+
'query', 'HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders', '/v', 'Personal',
|
|
524
|
+
], { encoding: 'utf8', windowsHide: true, timeout: 10_000 });
|
|
525
|
+
const raw = ((run.stdout || '').match(/Personal\s+REG_(?:EXPAND_)?SZ\s+(.+)/) || [])[1]?.trim();
|
|
526
|
+
if (run.status === 0 && raw) {
|
|
527
|
+
const expanded = raw.replace(/%([^%]+)%/g, (_, name) => process.env[name] ?? `%${name}%`);
|
|
528
|
+
if (!expanded.includes('%'))
|
|
529
|
+
return expanded;
|
|
525
530
|
}
|
|
526
|
-
catch { /* engine not installed */ }
|
|
527
531
|
}
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
532
|
+
catch { /* registry unreadable — fall through */ }
|
|
533
|
+
return path.join(os.homedir(), 'Documents');
|
|
534
|
+
}
|
|
535
|
+
function pwshInstalled() {
|
|
536
|
+
const programFiles = process.env.ProgramFiles || 'C:\\Program Files';
|
|
537
|
+
if (fs.existsSync(path.join(programFiles, 'PowerShell', '7', 'pwsh.exe'))
|
|
538
|
+
|| fs.existsSync(path.join(programFiles, 'PowerShell', '7-preview', 'pwsh.exe')))
|
|
535
539
|
return true;
|
|
536
|
-
|
|
540
|
+
for (const dir of (process.env.PATH || '').split(path.delimiter)) {
|
|
541
|
+
try {
|
|
542
|
+
if (dir && fs.existsSync(path.join(dir, 'pwsh.exe')))
|
|
543
|
+
return true;
|
|
544
|
+
}
|
|
545
|
+
catch { /* keep looking */ }
|
|
546
|
+
}
|
|
547
|
+
return false;
|
|
548
|
+
}
|
|
549
|
+
/**
|
|
550
|
+
* Resolve each PowerShell engine's CurrentUserAllHosts profile path WITHOUT
|
|
551
|
+
* spawning PowerShell. $PROFILE.CurrentUserAllHosts is deterministic:
|
|
552
|
+
* <Documents>\WindowsPowerShell\profile.ps1 (Windows PowerShell, always
|
|
553
|
+
* present on Windows) and <Documents>\PowerShell\profile.ps1 (pwsh, when
|
|
554
|
+
* installed). Asking the engines themselves was both an EDR flag risk and
|
|
555
|
+
* wrong on machines where EDR blocks PowerShell — the guard then silently
|
|
556
|
+
* skipped profile installation on exactly the fleets that want it most.
|
|
557
|
+
*/
|
|
558
|
+
function resolveProfilePaths() {
|
|
559
|
+
const documents = resolveDocumentsFolder();
|
|
560
|
+
const out = [{ engine: 'powershell', profilePath: path.join(documents, 'WindowsPowerShell', 'profile.ps1') }];
|
|
561
|
+
if (pwshInstalled()) {
|
|
562
|
+
out.push({ engine: 'pwsh', profilePath: path.join(documents, 'PowerShell', 'profile.ps1') });
|
|
563
|
+
}
|
|
564
|
+
return out;
|
|
537
565
|
}
|
|
538
566
|
function profileSnippet() {
|
|
539
567
|
return [
|
package/dist/config.d.ts
CHANGED
|
@@ -30,8 +30,16 @@ export interface PowershellHealth {
|
|
|
30
30
|
spawnOk: boolean;
|
|
31
31
|
decryptOk: boolean;
|
|
32
32
|
checkedAt: string;
|
|
33
|
+
/** FullLanguage / ConstrainedLanguage / RestrictedLanguage — captured only when a decrypt fails (extra spawn is failure-path-only). */
|
|
34
|
+
languageMode?: string;
|
|
33
35
|
}
|
|
34
36
|
export declare function getPowershellHealth(): PowershellHealth | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* PowerShell language mode — the "is this a hardened WDAC/AppLocker fleet
|
|
39
|
+
* machine?" bit that explained the lptx1110 incident. Spawned only on the
|
|
40
|
+
* DPAPI failure path (and from the deep self-test), never on healthy runs.
|
|
41
|
+
*/
|
|
42
|
+
export declare function capturePowershellLanguageMode(): string | undefined;
|
|
35
43
|
/**
|
|
36
44
|
* PSCredential.GetNetworkCredential() instead of Marshal::SecureStringToBSTR:
|
|
37
45
|
* hardened fleets run PowerShell in Constrained Language Mode, where the
|
|
@@ -42,6 +50,16 @@ export declare function getPowershellHealth(): PowershellHealth | undefined;
|
|
|
42
50
|
* regression test runs this EXACT text inside a ConstrainedLanguage session.
|
|
43
51
|
*/
|
|
44
52
|
export declare const DPAPI_DECRYPT_SNIPPET = "$secure=ConvertTo-SecureString -String $env:FCD_DPAPI_VALUE; (New-Object System.Management.Automation.PSCredential('fcd', $secure)).GetNetworkCredential().Password";
|
|
53
|
+
/**
|
|
54
|
+
* Deep self-test probe: encrypt AND decrypt a throwaway value with the exact
|
|
55
|
+
* DPAPI snippets used for the shield key. Encryption alone can succeed on a
|
|
56
|
+
* machine that can never decrypt (the pre-v1.21.32 bricking bug) — only the
|
|
57
|
+
* full roundtrip proves the credential store works.
|
|
58
|
+
*/
|
|
59
|
+
export declare function dpapiRoundtripProbe(): {
|
|
60
|
+
ok: boolean;
|
|
61
|
+
detail: string;
|
|
62
|
+
};
|
|
45
63
|
export declare function getHomeConfigPath(): string;
|
|
46
64
|
export declare function loadConfig(configPath?: string): BotGuardConfig;
|
|
47
65
|
export declare function getDefaultConfigPath(): string;
|
|
@@ -76,6 +94,19 @@ export interface ResolvedCliCredentials {
|
|
|
76
94
|
* Pure — unit-tested.
|
|
77
95
|
*/
|
|
78
96
|
export declare function daemonHandoffShieldKey(env?: NodeJS.ProcessEnv): string | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* Which source supplied the shield key on the most recent resolution — the
|
|
99
|
+
* codes-only trace shipped in the collect_diagnostics bundle (never the key
|
|
100
|
+
* itself). `none_dpapi_broken` is the credential-broken state: a DPAPI blob
|
|
101
|
+
* exists but would not decrypt and no fallback source was available.
|
|
102
|
+
*/
|
|
103
|
+
export type ShieldKeySource = 'override' | 'daemon_handoff' | 'native_store' | 'dpapi' | 'plaintext_config' | 'env' | 'none' | 'none_dpapi_broken';
|
|
104
|
+
export interface CredentialResolutionTrace {
|
|
105
|
+
shieldKeySource: ShieldKeySource;
|
|
106
|
+
dpapiAttempted: boolean;
|
|
107
|
+
at: string;
|
|
108
|
+
}
|
|
109
|
+
export declare function getCredentialResolutionTrace(): CredentialResolutionTrace | undefined;
|
|
79
110
|
/** Merge saved ~/.fullcourtdefense.yml + env + optional CLI flag overrides. */
|
|
80
111
|
export declare function resolveCliCredentials(config: BotGuardConfig, overrides?: Partial<ResolvedCliCredentials>, options?: {
|
|
81
112
|
skipDpapi?: boolean;
|
package/dist/config.js
CHANGED
|
@@ -35,11 +35,14 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
35
35
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
36
|
exports.DPAPI_DECRYPT_SNIPPET = void 0;
|
|
37
37
|
exports.getPowershellHealth = getPowershellHealth;
|
|
38
|
+
exports.capturePowershellLanguageMode = capturePowershellLanguageMode;
|
|
39
|
+
exports.dpapiRoundtripProbe = dpapiRoundtripProbe;
|
|
38
40
|
exports.getHomeConfigPath = getHomeConfigPath;
|
|
39
41
|
exports.loadConfig = loadConfig;
|
|
40
42
|
exports.getDefaultConfigPath = getDefaultConfigPath;
|
|
41
43
|
exports.saveShieldConfig = saveShieldConfig;
|
|
42
44
|
exports.daemonHandoffShieldKey = daemonHandoffShieldKey;
|
|
45
|
+
exports.getCredentialResolutionTrace = getCredentialResolutionTrace;
|
|
43
46
|
exports.resolveCliCredentials = resolveCliCredentials;
|
|
44
47
|
exports.resolveCliCredentialsShellFree = resolveCliCredentialsShellFree;
|
|
45
48
|
exports.isCliSetupComplete = isCliSetupComplete;
|
|
@@ -50,6 +53,8 @@ const fs = __importStar(require("fs"));
|
|
|
50
53
|
const os = __importStar(require("os"));
|
|
51
54
|
const path = __importStar(require("path"));
|
|
52
55
|
const child_process_1 = require("child_process");
|
|
56
|
+
const distress_1 = require("./distress");
|
|
57
|
+
const credentialStore_1 = require("./credentialStore");
|
|
53
58
|
const CONFIG_FILENAMES = [
|
|
54
59
|
'.fullcourtdefense.yml',
|
|
55
60
|
'.fullcourtdefense.yaml',
|
|
@@ -162,6 +167,30 @@ let powershellHealth;
|
|
|
162
167
|
function getPowershellHealth() {
|
|
163
168
|
return powershellHealth;
|
|
164
169
|
}
|
|
170
|
+
/**
|
|
171
|
+
* PowerShell language mode — the "is this a hardened WDAC/AppLocker fleet
|
|
172
|
+
* machine?" bit that explained the lptx1110 incident. Spawned only on the
|
|
173
|
+
* DPAPI failure path (and from the deep self-test), never on healthy runs.
|
|
174
|
+
*/
|
|
175
|
+
function capturePowershellLanguageMode() {
|
|
176
|
+
if (process.platform !== 'win32')
|
|
177
|
+
return undefined;
|
|
178
|
+
for (const shell of ['powershell.exe', 'pwsh.exe']) {
|
|
179
|
+
try {
|
|
180
|
+
const raw = (0, child_process_1.execFileSync)(shell, [
|
|
181
|
+
'-NoProfile', '-NonInteractive', '-ExecutionPolicy', 'Bypass',
|
|
182
|
+
'-Command', '$ExecutionContext.SessionState.LanguageMode',
|
|
183
|
+
], { encoding: 'utf8', stdio: ['ignore', 'pipe', 'ignore'], timeout: 15_000, windowsHide: true }).trim();
|
|
184
|
+
if (raw) {
|
|
185
|
+
if (powershellHealth)
|
|
186
|
+
powershellHealth.languageMode = raw;
|
|
187
|
+
return raw;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
catch { /* try the next shell */ }
|
|
191
|
+
}
|
|
192
|
+
return undefined;
|
|
193
|
+
}
|
|
165
194
|
function powershellDpapi(script, value) {
|
|
166
195
|
if (process.platform !== 'win32' || !value)
|
|
167
196
|
return undefined;
|
|
@@ -216,7 +245,44 @@ function protectShieldKeyForCurrentWindowsUser(value) {
|
|
|
216
245
|
*/
|
|
217
246
|
exports.DPAPI_DECRYPT_SNIPPET = "$secure=ConvertTo-SecureString -String $env:FCD_DPAPI_VALUE; (New-Object System.Management.Automation.PSCredential('fcd', $secure)).GetNetworkCredential().Password";
|
|
218
247
|
function unprotectShieldKeyForCurrentWindowsUser(value) {
|
|
219
|
-
|
|
248
|
+
const result = powershellDpapi(exports.DPAPI_DECRYPT_SNIPPET, value);
|
|
249
|
+
if (!result && value) {
|
|
250
|
+
// The machine HAS a DPAPI-protected key it cannot read — the exact
|
|
251
|
+
// credential-broken state that 401-bricked lptx1110. Emit a coded
|
|
252
|
+
// distress signal so the fleet console sees it without asking the user.
|
|
253
|
+
const health = powershellHealth;
|
|
254
|
+
if (health && !health.spawnOk) {
|
|
255
|
+
(0, distress_1.reportDistress)('credentials', distress_1.DISTRESS.POWERSHELL_BLOCKED, 'powershell.exe and pwsh.exe both failed to start (EDR/AppLocker?)');
|
|
256
|
+
}
|
|
257
|
+
else {
|
|
258
|
+
const mode = capturePowershellLanguageMode();
|
|
259
|
+
(0, distress_1.reportDistress)('credentials', distress_1.DISTRESS.DPAPI_DECRYPT_FAILED, mode ? `language mode: ${mode}` : 'decrypt returned nothing');
|
|
260
|
+
if (mode && mode !== 'FullLanguage') {
|
|
261
|
+
(0, distress_1.reportDistress)('credentials', distress_1.DISTRESS.POWERSHELL_CONSTRAINED, `PowerShell language mode is ${mode}`);
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
return result;
|
|
266
|
+
}
|
|
267
|
+
/**
|
|
268
|
+
* Deep self-test probe: encrypt AND decrypt a throwaway value with the exact
|
|
269
|
+
* DPAPI snippets used for the shield key. Encryption alone can succeed on a
|
|
270
|
+
* machine that can never decrypt (the pre-v1.21.32 bricking bug) — only the
|
|
271
|
+
* full roundtrip proves the credential store works.
|
|
272
|
+
*/
|
|
273
|
+
function dpapiRoundtripProbe() {
|
|
274
|
+
if (process.platform !== 'win32')
|
|
275
|
+
return { ok: true, detail: 'not applicable (non-Windows)' };
|
|
276
|
+
const probe = `fcd-selftest-${Date.now()}`;
|
|
277
|
+
const encrypted = protectShieldKeyForCurrentWindowsUser(probe);
|
|
278
|
+
if (!encrypted) {
|
|
279
|
+
const health = powershellHealth;
|
|
280
|
+
return { ok: false, detail: health && !health.spawnOk ? 'PowerShell would not start (EDR/AppLocker?)' : 'DPAPI encrypt produced nothing' };
|
|
281
|
+
}
|
|
282
|
+
const decrypted = powershellDpapi(exports.DPAPI_DECRYPT_SNIPPET, encrypted);
|
|
283
|
+
if (decrypted === probe)
|
|
284
|
+
return { ok: true, detail: 'encrypt + decrypt roundtrip OK' };
|
|
285
|
+
return { ok: false, detail: decrypted ? 'decrypt returned a different value (profile mismatch?)' : 'decrypt returned nothing (CLM/EDR block?)' };
|
|
220
286
|
}
|
|
221
287
|
function mergeConfig(base, override) {
|
|
222
288
|
return {
|
|
@@ -274,8 +340,83 @@ const DEFAULT_API_URL = 'https://api.fullcourtdefense.ai';
|
|
|
274
340
|
function daemonHandoffShieldKey(env = process.env) {
|
|
275
341
|
return env.FCD_SHIELD_ID && env.FCD_SHIELD_KEY ? env.FCD_SHIELD_KEY : undefined;
|
|
276
342
|
}
|
|
343
|
+
let lastCredentialTrace;
|
|
344
|
+
function getCredentialResolutionTrace() {
|
|
345
|
+
return lastCredentialTrace;
|
|
346
|
+
}
|
|
347
|
+
// Once per process: hooks are short-lived (one attempt each) and the daemon
|
|
348
|
+
// long-lived (must not hammer the Credential Manager every 30s poll).
|
|
349
|
+
let nativeMigrationAttempted = false;
|
|
350
|
+
function maybeMigrateShieldKeyToNativeStore(shieldId, shieldKey) {
|
|
351
|
+
if (nativeMigrationAttempted || !(0, credentialStore_1.nativeCredentialStoreAvailable)())
|
|
352
|
+
return;
|
|
353
|
+
nativeMigrationAttempted = true;
|
|
354
|
+
try {
|
|
355
|
+
if ((0, credentialStore_1.readShieldKeyNative)(shieldId))
|
|
356
|
+
return; // already migrated
|
|
357
|
+
(0, credentialStore_1.saveShieldKeyNative)(shieldId, shieldKey); // read-back verified inside
|
|
358
|
+
}
|
|
359
|
+
catch { /* migration is opportunistic — legacy sources keep working */ }
|
|
360
|
+
}
|
|
277
361
|
/** Merge saved ~/.fullcourtdefense.yml + env + optional CLI flag overrides. */
|
|
278
362
|
function resolveCliCredentials(config, overrides = {}, options = {}) {
|
|
363
|
+
// Shield key: same precedence as the old || chain, evaluated stepwise so
|
|
364
|
+
// (a) the DPAPI decrypt stays lazy — no powershell.exe spawn when an
|
|
365
|
+
// earlier source wins — and (b) the winning source is recorded for the
|
|
366
|
+
// diagnostics trace.
|
|
367
|
+
let shieldKey = overrides.shieldKey;
|
|
368
|
+
let shieldKeySource = shieldKey ? 'override' : 'none';
|
|
369
|
+
let dpapiAttempted = false;
|
|
370
|
+
const resolvedShieldId = overrides.shieldId
|
|
371
|
+
|| config.shieldId
|
|
372
|
+
|| process.env.FCD_SHIELD_ID
|
|
373
|
+
|| process.env.FULLCOURTDEFENSE_SHIELD_ID
|
|
374
|
+
|| process.env.AGENTGUARD_SHIELD_ID;
|
|
375
|
+
if (!shieldKey) {
|
|
376
|
+
// Daemon handoff BEFORE the DPAPI decrypt: no powershell.exe spawn at
|
|
377
|
+
// all during daemon-driven sweeps (see daemonHandoffShieldKey docs).
|
|
378
|
+
shieldKey = daemonHandoffShieldKey();
|
|
379
|
+
if (shieldKey)
|
|
380
|
+
shieldKeySource = 'daemon_handoff';
|
|
381
|
+
}
|
|
382
|
+
if (!shieldKey && resolvedShieldId) {
|
|
383
|
+
// Native Credential Manager BEFORE the DPAPI/PowerShell decrypt: an
|
|
384
|
+
// in-process win32 API read that EDRs don't flag and CLM can't constrain.
|
|
385
|
+
// Silently absent on machines that never migrated (see the migration
|
|
386
|
+
// below) — the DPAPI chain still stands behind it.
|
|
387
|
+
shieldKey = (0, credentialStore_1.readShieldKeyNative)(resolvedShieldId);
|
|
388
|
+
if (shieldKey)
|
|
389
|
+
shieldKeySource = 'native_store';
|
|
390
|
+
}
|
|
391
|
+
if (!shieldKey && !options.skipDpapi && config.shieldKeyDpapi) {
|
|
392
|
+
dpapiAttempted = true;
|
|
393
|
+
shieldKey = unprotectShieldKeyForCurrentWindowsUser(config.shieldKeyDpapi);
|
|
394
|
+
if (shieldKey)
|
|
395
|
+
shieldKeySource = 'dpapi';
|
|
396
|
+
}
|
|
397
|
+
if (!shieldKey && config.shieldKey) {
|
|
398
|
+
shieldKey = config.shieldKey;
|
|
399
|
+
shieldKeySource = 'plaintext_config';
|
|
400
|
+
}
|
|
401
|
+
if (!shieldKey) {
|
|
402
|
+
shieldKey = process.env.FCD_SHIELD_KEY
|
|
403
|
+
|| process.env.FULLCOURTDEFENSE_SHIELD_KEY
|
|
404
|
+
|| process.env.AGENTGUARD_SHIELD_KEY;
|
|
405
|
+
if (shieldKey)
|
|
406
|
+
shieldKeySource = 'env';
|
|
407
|
+
}
|
|
408
|
+
if (!shieldKey && dpapiAttempted)
|
|
409
|
+
shieldKeySource = 'none_dpapi_broken';
|
|
410
|
+
lastCredentialTrace = { shieldKeySource, dpapiAttempted, at: new Date().toISOString() };
|
|
411
|
+
// Self-healing migration: whenever the key still resolves through a legacy
|
|
412
|
+
// source (DPAPI blob or plaintext config), copy it into the Credential
|
|
413
|
+
// Manager once. On fleets like lptx1110 the daemon's context CAN decrypt
|
|
414
|
+
// while IDE-spawned hooks CANNOT — after the daemon's first resolution the
|
|
415
|
+
// native entry exists and every process reads it without PowerShell.
|
|
416
|
+
if (shieldKey && resolvedShieldId
|
|
417
|
+
&& (shieldKeySource === 'dpapi' || shieldKeySource === 'plaintext_config')) {
|
|
418
|
+
maybeMigrateShieldKeyToNativeStore(resolvedShieldId, shieldKey);
|
|
419
|
+
}
|
|
279
420
|
return {
|
|
280
421
|
apiKey: overrides.apiKey
|
|
281
422
|
|| config.apiKey
|
|
@@ -292,15 +433,7 @@ function resolveCliCredentials(config, overrides = {}, options = {}) {
|
|
|
292
433
|
|| process.env.FCD_SHIELD_ID
|
|
293
434
|
|| process.env.FULLCOURTDEFENSE_SHIELD_ID
|
|
294
435
|
|| process.env.AGENTGUARD_SHIELD_ID,
|
|
295
|
-
shieldKey
|
|
296
|
-
// Daemon handoff BEFORE the DPAPI decrypt: no powershell.exe spawn at
|
|
297
|
-
// all during daemon-driven sweeps (see daemonHandoffShieldKey docs).
|
|
298
|
-
|| daemonHandoffShieldKey()
|
|
299
|
-
|| (options.skipDpapi ? undefined : unprotectShieldKeyForCurrentWindowsUser(config.shieldKeyDpapi || ''))
|
|
300
|
-
|| config.shieldKey
|
|
301
|
-
|| process.env.FCD_SHIELD_KEY
|
|
302
|
-
|| process.env.FULLCOURTDEFENSE_SHIELD_KEY
|
|
303
|
-
|| process.env.AGENTGUARD_SHIELD_KEY,
|
|
436
|
+
shieldKey,
|
|
304
437
|
};
|
|
305
438
|
}
|
|
306
439
|
/**
|
|
@@ -360,6 +493,13 @@ function writeSetupConfig(target, input) {
|
|
|
360
493
|
setTopLevel('apiKey', input.apiKey);
|
|
361
494
|
setTopLevel('organizationId', input.organizationId);
|
|
362
495
|
setTopLevel('shieldId', input.shieldId);
|
|
496
|
+
// Native Credential Manager write (read-back verified) — the store hooks
|
|
497
|
+
// read WITHOUT PowerShell. The DPAPI blob below is still written when it
|
|
498
|
+
// verifies: rolling back to a ≤1.21.33 CLI keeps working, and machines
|
|
499
|
+
// where the native binding is blocked keep their PowerShell path.
|
|
500
|
+
if (input.shieldKey && input.shieldId) {
|
|
501
|
+
(0, credentialStore_1.saveShieldKeyNative)(input.shieldId, input.shieldKey);
|
|
502
|
+
}
|
|
363
503
|
const protectedShieldKey = input.shieldKey && process.platform === 'win32'
|
|
364
504
|
? protectShieldKeyForCurrentWindowsUser(input.shieldKey)
|
|
365
505
|
: undefined;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
export declare function nativeCredentialStoreAvailable(): boolean;
|
|
2
|
+
/** Read the shield key from the Credential Manager. Undefined when absent/unavailable. */
|
|
3
|
+
export declare function readShieldKeyNative(shieldId: string): string | undefined;
|
|
4
|
+
/**
|
|
5
|
+
* Store the shield key, read-back verified. Returns false when the native
|
|
6
|
+
* store is unavailable or the verify failed — callers keep their fallback.
|
|
7
|
+
*/
|
|
8
|
+
export declare function saveShieldKeyNative(shieldId: string, shieldKey: string): boolean;
|
|
9
|
+
/** Remove the entry (unenroll / re-enroll cleanup). Best-effort. */
|
|
10
|
+
export declare function deleteShieldKeyNative(shieldId: string): void;
|
|
11
|
+
/**
|
|
12
|
+
* Deep self-test probe: write + read + delete a throwaway entry with the exact
|
|
13
|
+
* code paths used for the shield key. Proves the native store works end-to-end
|
|
14
|
+
* on THIS machine under the current EDR/policy regime.
|
|
15
|
+
*/
|
|
16
|
+
export declare function nativeStoreRoundtripProbe(): {
|
|
17
|
+
ok: boolean;
|
|
18
|
+
detail: string;
|
|
19
|
+
};
|