fullcourtdefense-cli 1.21.39 → 1.21.40
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.
|
@@ -272,6 +272,12 @@ function builtIn(itemId, categoryId, category, ruleId, reason, findingEvidence,
|
|
|
272
272
|
* references these files at all.
|
|
273
273
|
*/
|
|
274
274
|
function honeypotTouch(value, options) {
|
|
275
|
+
// Honeypot is a catalog item (id 'honeypot_decoy_access') so admins can see it
|
|
276
|
+
// in the console and, if they must, turn it off — nothing enforces invisibly.
|
|
277
|
+
// It is zero-FP by design (daemon-planted decoy paths only), so it defaults ON
|
|
278
|
+
// and disabling is discouraged, but the toggle is honored like any other rule.
|
|
279
|
+
if (!isEnabled('honeypot_decoy_access', options))
|
|
280
|
+
return undefined;
|
|
275
281
|
const paths = options?.honeypotPaths;
|
|
276
282
|
if (!paths || paths.length === 0)
|
|
277
283
|
return undefined;
|
package/dist/version.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fullcourtdefense-cli",
|
|
3
|
-
"version": "1.21.
|
|
3
|
+
"version": "1.21.40",
|
|
4
4
|
"description": "Full Court Defense CLI — security scanning for AI agents from your terminal",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"test:msi-stop-filter": "node scripts/test-msi-stop-filter.js",
|
|
20
20
|
"test:guard-content-context": "npm run build && node scripts/test-guard-content-context.js",
|
|
21
21
|
"test:guard-fp-fixes": "npm run build && node scripts/test-guard-fp-fixes.js",
|
|
22
|
+
"test:catalog-toggles": "npm run build && node scripts/test-catalog-toggles.js",
|
|
22
23
|
"test:honeypot": "npm run build && node scripts/test-honeypot.js",
|
|
23
24
|
"test:browser-credentials-rule": "npm run build && node scripts/test-browser-credentials-rule.js",
|
|
24
25
|
"test:taint-ledger": "npm run build && node scripts/test-taint-ledger.js",
|