fullcourtdefense-cli 1.21.8 → 1.21.9
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/clipboardScan.js +14 -2
- package/dist/notify.js +7 -1
- package/dist/version.json +1 -1
- package/package.json +1 -1
|
@@ -22,18 +22,30 @@ const deterministicGuard_1 = require("./deterministicGuard");
|
|
|
22
22
|
* token.
|
|
23
23
|
*/
|
|
24
24
|
const LONE_TOKEN = /^[A-Za-z0-9_\-+/=]{24,256}$/;
|
|
25
|
+
function asClipboardFinding(finding) {
|
|
26
|
+
if (!finding)
|
|
27
|
+
return undefined;
|
|
28
|
+
// The underlying engine phrases reasons for tool responses ("Blocked tool
|
|
29
|
+
// response containing …"). Re-word for the clipboard/paste context without
|
|
30
|
+
// changing rule id, category, evidence, or toggles.
|
|
31
|
+
return {
|
|
32
|
+
...finding,
|
|
33
|
+
ruleId: 'local-clipboard-secret',
|
|
34
|
+
reason: 'Secret detected on the clipboard — do not paste it into an unprotected AI chat.',
|
|
35
|
+
};
|
|
36
|
+
}
|
|
25
37
|
function scanDeterministicClipboard(text, options) {
|
|
26
38
|
const trimmed = (text || '').trim();
|
|
27
39
|
if (!trimmed)
|
|
28
40
|
return undefined;
|
|
29
41
|
const direct = (0, deterministicGuard_1.scanDeterministicTextResponse)(trimmed, options);
|
|
30
42
|
if (direct)
|
|
31
|
-
return direct;
|
|
43
|
+
return asClipboardFinding(direct);
|
|
32
44
|
if (LONE_TOKEN.test(trimmed)) {
|
|
33
45
|
// Inject a canonical keyword so the contextual detector's proximity check
|
|
34
46
|
// passes; its high-entropy gate still does the real work. The synthetic
|
|
35
47
|
// prefix is never surfaced — the finding's evidence comes from the token.
|
|
36
|
-
return (0, deterministicGuard_1.scanDeterministicTextResponse)(`api key ${trimmed}`, options);
|
|
48
|
+
return asClipboardFinding((0, deterministicGuard_1.scanDeterministicTextResponse)(`api key ${trimmed}`, options));
|
|
37
49
|
}
|
|
38
50
|
return undefined;
|
|
39
51
|
}
|
package/dist/notify.js
CHANGED
|
@@ -7,7 +7,13 @@ const child_process_1 = require("child_process");
|
|
|
7
7
|
function spawnDetached(command, args, opts) {
|
|
8
8
|
try {
|
|
9
9
|
const child = (0, child_process_1.spawn)(command, args, {
|
|
10
|
-
detached:
|
|
10
|
+
// detached:true is BROKEN for PowerShell on the bundled Node/Windows
|
|
11
|
+
// runtime — the child gets a PID but never executes a single line, so
|
|
12
|
+
// every toast/alert was silently lost. Our callers (the long-lived
|
|
13
|
+
// daemon guard, and hooks running in wait/fail-closed mode) outlive the
|
|
14
|
+
// notification anyway, so a non-detached child renders and completes.
|
|
15
|
+
// Keep detached on POSIX where it works and short-lived CLIs benefit.
|
|
16
|
+
detached: process.platform !== 'win32',
|
|
11
17
|
stdio: 'ignore',
|
|
12
18
|
// windowsHide sets the process show-state to SW_HIDE, which a GUI child's
|
|
13
19
|
// FIRST top-level window inherits — that silently hid the alert form.
|
package/dist/version.json
CHANGED