@akasecurity/ai-tc-claude-code 0.9.12 → 0.9.13
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/.claude-plugin/plugin.json +1 -1
- package/package.json +2 -2
- package/scripts/apply-suppressions.js +331 -22
- package/scripts/backfill.js +464 -124
- package/scripts/content-retention.js +334 -22
- package/scripts/filescan.js +464 -124
- package/scripts/firstrun.js +464 -124
- package/scripts/history-sync.js +379 -42
- package/scripts/intro.js +209 -17
- package/scripts/message-display.js +331 -22
- package/scripts/onboard.js +331 -22
- package/scripts/post-model-switch.js +212 -17
- package/scripts/post-tool-use.js +464 -124
- package/scripts/pre-model-switch.js +488 -127
- package/scripts/pre-tool-use.js +488 -127
- package/scripts/query.js +575 -125
- package/scripts/reconcile.js +464 -124
- package/scripts/remediate.js +464 -124
- package/scripts/scan-worker.js +209 -17
- package/scripts/session-start.js +464 -124
- package/scripts/start-light.js +209 -17
- package/scripts/statusline.js +464 -124
- package/scripts/stop.js +212 -17
- package/scripts/sync.js +464 -124
- package/scripts/user-prompt-submit.js +488 -127
package/scripts/pre-tool-use.js
CHANGED
|
@@ -20482,7 +20482,17 @@ var UNPRICEABLE_PROVIDERS = Object.freeze([
|
|
|
20482
20482
|
"gateway",
|
|
20483
20483
|
"unknown",
|
|
20484
20484
|
"cli",
|
|
20485
|
-
"api"
|
|
20485
|
+
"api",
|
|
20486
|
+
// The browser extension's native host records these as `llm_call.provider`
|
|
20487
|
+
// for a web-chat turn — the web tool id, deliberately never the vendor id
|
|
20488
|
+
// (`openai`/`anthropic`) the session root carries. Subscription traffic
|
|
20489
|
+
// burns rate-limit budget, not dollar credits, and listing them here is
|
|
20490
|
+
// what keeps that true structurally: a later maintainer who wants to price
|
|
20491
|
+
// web-chat traffic at API rates has to delete this entry first, and meet
|
|
20492
|
+
// the reason on the way, rather than quietly adding one to
|
|
20493
|
+
// PROVIDER_PLATFORM.
|
|
20494
|
+
"chatgpt",
|
|
20495
|
+
"claude-ai"
|
|
20486
20496
|
]);
|
|
20487
20497
|
function platformForProvider(provider) {
|
|
20488
20498
|
return PROVIDER_PLATFORM.get(provider.trim().toLowerCase()) ?? null;
|
|
@@ -20625,7 +20635,12 @@ var HARNESS = {
|
|
|
20625
20635
|
ClaudeDesktop: "claudedesktop",
|
|
20626
20636
|
ChatGpt: "chatgpt",
|
|
20627
20637
|
ClaudeAi: "claudeai",
|
|
20628
|
-
Api: "api"
|
|
20638
|
+
Api: "api",
|
|
20639
|
+
// Not a coding assistant a person drives — an in-process SDK embedded in an
|
|
20640
|
+
// application, so it has no IDE/CLI/desktop/web surface of its own. Carries
|
|
20641
|
+
// the same id as its SOURCE_TOOL counterpart, unlike every capture-side tool
|
|
20642
|
+
// whose wire spelling differs from its display spelling.
|
|
20643
|
+
AiTcSdk: "ai-tc-sdk"
|
|
20629
20644
|
};
|
|
20630
20645
|
var Harness = external_exports.enum(HARNESS).meta({ id: "Harness" });
|
|
20631
20646
|
var SOURCE_TOOL = {
|
|
@@ -20641,9 +20656,15 @@ var SOURCE_TOOL = {
|
|
|
20641
20656
|
// whose tool could not be identified both render through the read side's
|
|
20642
20657
|
// miss path rather than as a harness of their own.
|
|
20643
20658
|
Cli: "cli",
|
|
20644
|
-
Unknown: "unknown"
|
|
20659
|
+
Unknown: "unknown",
|
|
20660
|
+
// The wire id an in-process, request-path SDK stamps on its own structural
|
|
20661
|
+
// rows (`request_decision`) — never a capture of prompt/response/tool text,
|
|
20662
|
+
// since the SDK sits in front of a model call rather than inside a coding
|
|
20663
|
+
// assistant's own hook contract.
|
|
20664
|
+
AiTcSdk: "ai-tc-sdk"
|
|
20645
20665
|
};
|
|
20646
20666
|
var SourceTool = external_exports.enum(SOURCE_TOOL).meta({ id: "SourceTool" });
|
|
20667
|
+
var WebSourceTool = SourceTool.extract(["ChatGpt", "ClaudeAi"]);
|
|
20647
20668
|
var TOOL_TO_HARNESS = {
|
|
20648
20669
|
[SOURCE_TOOL.ClaudeCode]: HARNESS.ClaudeCode,
|
|
20649
20670
|
[SOURCE_TOOL.ClaudeDesktop]: HARNESS.ClaudeDesktop,
|
|
@@ -20652,7 +20673,12 @@ var TOOL_TO_HARNESS = {
|
|
|
20652
20673
|
[SOURCE_TOOL.ChatGpt]: HARNESS.ChatGpt,
|
|
20653
20674
|
[SOURCE_TOOL.Codex]: HARNESS.Codex,
|
|
20654
20675
|
[SOURCE_TOOL.Antigravity]: HARNESS.Antigravity,
|
|
20655
|
-
[SOURCE_TOOL.ClaudeAi]: HARNESS.ClaudeAi
|
|
20676
|
+
[SOURCE_TOOL.ClaudeAi]: HARNESS.ClaudeAi,
|
|
20677
|
+
// Wire and display id are the same string here, but the row still belongs:
|
|
20678
|
+
// both vocabularies carry the `AiTcSdk` member, and the join is exactly
|
|
20679
|
+
// their intersection — leaving a shared member out would read as an
|
|
20680
|
+
// uninstrumented tool on both surfaces, which this one is not.
|
|
20681
|
+
[SOURCE_TOOL.AiTcSdk]: HARNESS.AiTcSdk
|
|
20656
20682
|
};
|
|
20657
20683
|
|
|
20658
20684
|
// ../../packages/schema/src/zod/finding.ts
|
|
@@ -20686,7 +20712,8 @@ var FindingProvider = Harness.extract([
|
|
|
20686
20712
|
"ClaudeAi",
|
|
20687
20713
|
"Codex",
|
|
20688
20714
|
"Antigravity",
|
|
20689
|
-
"Api"
|
|
20715
|
+
"Api",
|
|
20716
|
+
"AiTcSdk"
|
|
20690
20717
|
]).meta({ id: "FindingProvider" });
|
|
20691
20718
|
var FindingCategory = external_exports.enum([
|
|
20692
20719
|
"secret",
|
|
@@ -21063,18 +21090,41 @@ var AuditEventType = external_exports.enum([
|
|
|
21063
21090
|
// 'tool_call' is the reconciler's structural row for every call, while
|
|
21064
21091
|
// 'tool_use' exists only where a hook enforced against the arguments.
|
|
21065
21092
|
"tool_use",
|
|
21066
|
-
// One row per model REFUSAL
|
|
21067
|
-
//
|
|
21068
|
-
//
|
|
21069
|
-
//
|
|
21070
|
-
//
|
|
21071
|
-
//
|
|
21093
|
+
// One row per model REFUSAL, across all four seams a prohibited model can be
|
|
21094
|
+
// stopped at: a switch onto it, a turn already running on it, a subagent
|
|
21095
|
+
// spawn asking for it, or a request-path refusal an embedded request-path
|
|
21096
|
+
// SDK makes in-process before the call leaves the application. Which seam
|
|
21097
|
+
// rides `attributes.refusal_seam`, never this member name. A structural row
|
|
21098
|
+
// like the ones above rather than a capture — it carries the model that was
|
|
21099
|
+
// refused and nothing the user typed, because what is worth recording about
|
|
21100
|
+
// a governance decision is the decision, and prompt text is the thing this
|
|
21101
|
+
// product exists to keep from travelling.
|
|
21072
21102
|
"model_refusal",
|
|
21103
|
+
// One row per request-path DECISION: a policy check an embedded request-path
|
|
21104
|
+
// SDK performs in-process before a model call leaves the application, or
|
|
21105
|
+
// against that call's non-streamed response. A structural row like
|
|
21106
|
+
// 'model_refusal' rather than a capture — content-free in the same way:
|
|
21107
|
+
// which side, which seam, what action and which field are decided rides
|
|
21108
|
+
// `attributes`, never this member name, and the matched text itself never
|
|
21109
|
+
// travels.
|
|
21110
|
+
//
|
|
21111
|
+
// A prohibited-model refusal on the request path is deliberately NOT this
|
|
21112
|
+
// member: it stays 'model_refusal' with `refusal_seam: 'request'`, so it
|
|
21113
|
+
// shares one bucket with the plugin's switch/turn/spawn refusals rather
|
|
21114
|
+
// than splitting one governance concept across two event types. This
|
|
21115
|
+
// member carries every OTHER request-path decision.
|
|
21116
|
+
"request_decision",
|
|
21073
21117
|
// One row per config-inventory scan, hung off the session root. It is the
|
|
21074
21118
|
// fact the posture inspection findings reference (findings require an
|
|
21075
21119
|
// audit_event_id), and its started_at is the "scanned Nm ago" the read
|
|
21076
21120
|
// surface renders.
|
|
21077
|
-
"config_scan"
|
|
21121
|
+
"config_scan",
|
|
21122
|
+
// One row per reported browser-extension capture status, hung off the web
|
|
21123
|
+
// session root. The durable home of what one tab's network interception
|
|
21124
|
+
// is doing — a write-through of the native host's in-memory tracker, so a
|
|
21125
|
+
// second process (aka extension status) and a restarted host both have
|
|
21126
|
+
// somewhere to read it back from.
|
|
21127
|
+
"capture_status"
|
|
21078
21128
|
]).meta({ id: "AuditEventType" });
|
|
21079
21129
|
var AttributeBag = external_exports.record(external_exports.string(), external_exports.unknown());
|
|
21080
21130
|
var HostAttributes = external_exports.object({
|
|
@@ -21234,6 +21284,20 @@ var CaptureAttributes = external_exports.object({
|
|
|
21234
21284
|
// repeated rather than referenced because a store reader opens this file.
|
|
21235
21285
|
redact_degraded_to: ActionTaken.optional()
|
|
21236
21286
|
}).catchall(external_exports.unknown());
|
|
21287
|
+
var CaptureStatusAttributes = external_exports.object({
|
|
21288
|
+
source_tool: external_exports.string().optional(),
|
|
21289
|
+
patched: external_exports.boolean().optional(),
|
|
21290
|
+
live: external_exports.boolean().optional(),
|
|
21291
|
+
blind: external_exports.boolean().optional(),
|
|
21292
|
+
sends_seen_dom: external_exports.number().int().nonnegative().optional(),
|
|
21293
|
+
exchanges_seen_net: external_exports.number().int().nonnegative().optional(),
|
|
21294
|
+
parse_failures: external_exports.number().int().nonnegative().optional(),
|
|
21295
|
+
unparsed_bodies: external_exports.number().int().nonnegative().optional(),
|
|
21296
|
+
shape_misses: external_exports.array(external_exports.string()).optional(),
|
|
21297
|
+
conversation_endpoints: external_exports.number().int().nonnegative().optional(),
|
|
21298
|
+
closed: external_exports.boolean().optional(),
|
|
21299
|
+
enforcement: external_exports.string().optional()
|
|
21300
|
+
}).catchall(external_exports.unknown());
|
|
21237
21301
|
var ToolCallInspection = external_exports.object({
|
|
21238
21302
|
ruleId: external_exports.string().min(1),
|
|
21239
21303
|
ruleName: external_exports.string(),
|
|
@@ -22093,6 +22157,30 @@ var AttachedCredential = external_exports.object({
|
|
|
22093
22157
|
keyPrefix: external_exports.string().min(1).max(16).optional(),
|
|
22094
22158
|
mintedAt: external_exports.iso.datetime().optional()
|
|
22095
22159
|
});
|
|
22160
|
+
var LOOPBACK_HOSTS = /* @__PURE__ */ new Set(["localhost", "127.0.0.1", "::1", "[::1]"]);
|
|
22161
|
+
function unsafeEndpointReason(endpoint) {
|
|
22162
|
+
let parsed2;
|
|
22163
|
+
try {
|
|
22164
|
+
parsed2 = new URL(endpoint);
|
|
22165
|
+
} catch {
|
|
22166
|
+
return "unparseable";
|
|
22167
|
+
}
|
|
22168
|
+
if (parsed2.username !== "" || parsed2.password !== "") return "userinfo";
|
|
22169
|
+
if (parsed2.search !== "" || parsed2.hash !== "") return "query-or-fragment";
|
|
22170
|
+
if (parsed2.protocol === "https:") return null;
|
|
22171
|
+
return parsed2.protocol === "http:" && LOOPBACK_HOSTS.has(parsed2.hostname) ? null : "insecure";
|
|
22172
|
+
}
|
|
22173
|
+
function isSafeEndpoint(endpoint) {
|
|
22174
|
+
return unsafeEndpointReason(endpoint) === null;
|
|
22175
|
+
}
|
|
22176
|
+
function originOnly(endpoint) {
|
|
22177
|
+
try {
|
|
22178
|
+
const parsed2 = new URL(endpoint);
|
|
22179
|
+
return `${parsed2.protocol}//${parsed2.host}`;
|
|
22180
|
+
} catch {
|
|
22181
|
+
return "(unparseable endpoint)";
|
|
22182
|
+
}
|
|
22183
|
+
}
|
|
22096
22184
|
var MAX_DATE_MS = 253402300799999;
|
|
22097
22185
|
var MAX_INT4 = 2147483647;
|
|
22098
22186
|
var StorePosturePack = external_exports.object({
|
|
@@ -22247,6 +22335,11 @@ var RemoteFailureKind = external_exports.enum([
|
|
|
22247
22335
|
"rejected",
|
|
22248
22336
|
"unreachable"
|
|
22249
22337
|
]);
|
|
22338
|
+
var ControlPlaneFailure = RemoteFailureKind.extract([
|
|
22339
|
+
"unauthorized",
|
|
22340
|
+
"forbidden",
|
|
22341
|
+
"unreachable"
|
|
22342
|
+
]);
|
|
22250
22343
|
var AttachDeviceRequest = external_exports.object({
|
|
22251
22344
|
// This machine's own continuity id, so re-attaching ROTATES the credential
|
|
22252
22345
|
// on one machine record instead of producing a second one. Client-minted
|
|
@@ -22786,7 +22879,12 @@ var EventMetadata = external_exports.object({
|
|
|
22786
22879
|
// in — set by the browser extension's network capture so a stored `response`
|
|
22787
22880
|
// row can be joined to the `llm_call` leaf describing the same turn. Absent
|
|
22788
22881
|
// on every other capture path, which has no such id.
|
|
22789
|
-
|
|
22882
|
+
//
|
|
22883
|
+
// Non-empty for the reason WebExchange.messageId is: it is the join key, and
|
|
22884
|
+
// a blank one matches no `llm_call` leaf. That refusal reaches only the
|
|
22885
|
+
// places an event is PARSED; the local write path types the event and parses
|
|
22886
|
+
// nothing, which is why `toCaptureAttributes` omits a blank one separately.
|
|
22887
|
+
messageId: external_exports.string().min(1).optional(),
|
|
22790
22888
|
conversationId: external_exports.string().optional(),
|
|
22791
22889
|
// How long THIS capture's inspection blocked its caller, in whole
|
|
22792
22890
|
// milliseconds — the plugin's own added latency, NOT the LLM call it sat in
|
|
@@ -23633,6 +23731,85 @@ function policyIdIsReversible(policyId) {
|
|
|
23633
23731
|
var DEFAULT_ACTIONS = Object.fromEntries(
|
|
23634
23732
|
DetectionCategory.options.map((c) => [c, builtinPolicyToAction(severityFloorPolicy(c))])
|
|
23635
23733
|
);
|
|
23734
|
+
function ruleCategoryMap(wireRules, localRules, compiledRules) {
|
|
23735
|
+
const map2 = /* @__PURE__ */ new Map();
|
|
23736
|
+
for (const rule of wireRules ?? []) map2.set(rule.id, rule.category);
|
|
23737
|
+
for (const rule of localRules ?? []) map2.set(rule.id, rule.category);
|
|
23738
|
+
for (const rule of compiledRules) map2.set(rule.id, rule.category);
|
|
23739
|
+
return map2;
|
|
23740
|
+
}
|
|
23741
|
+
function policyKey(policy) {
|
|
23742
|
+
return "ruleId" in policy.target ? `rule:${policy.target.ruleId}` : `category:${policy.target.category}`;
|
|
23743
|
+
}
|
|
23744
|
+
function floorFor(policy, categoryByRuleId) {
|
|
23745
|
+
const category = "category" in policy.target ? policy.target.category : categoryByRuleId.get(policy.target.ruleId);
|
|
23746
|
+
return category === void 0 ? null : DEFAULT_ACTIONS[category];
|
|
23747
|
+
}
|
|
23748
|
+
function strongerOf(a, b) {
|
|
23749
|
+
if (a === null) return b;
|
|
23750
|
+
if (b === null) return a;
|
|
23751
|
+
return strongerAction(a, b);
|
|
23752
|
+
}
|
|
23753
|
+
function mergeRaiseOnly(localPolicies, remotePolicies, categoryByRuleId) {
|
|
23754
|
+
const merged = /* @__PURE__ */ new Map();
|
|
23755
|
+
const disabled = [];
|
|
23756
|
+
const remoteCategoryAction = /* @__PURE__ */ new Map();
|
|
23757
|
+
for (const policy of remotePolicies) {
|
|
23758
|
+
if (!policy.enabled) continue;
|
|
23759
|
+
if (!("category" in policy.target)) continue;
|
|
23760
|
+
if (remoteCategoryAction.has(policy.target.category)) continue;
|
|
23761
|
+
const floor = floorFor(policy, categoryByRuleId);
|
|
23762
|
+
remoteCategoryAction.set(
|
|
23763
|
+
policy.target.category,
|
|
23764
|
+
floor !== null && !isActionAtLeast(policy.action, floor) ? floor : policy.action
|
|
23765
|
+
);
|
|
23766
|
+
}
|
|
23767
|
+
for (const policy of localPolicies) {
|
|
23768
|
+
if (!policy.enabled) {
|
|
23769
|
+
disabled.push(policy);
|
|
23770
|
+
continue;
|
|
23771
|
+
}
|
|
23772
|
+
const key = policyKey(policy);
|
|
23773
|
+
if (merged.has(key)) continue;
|
|
23774
|
+
let remoteFloor = null;
|
|
23775
|
+
if ("ruleId" in policy.target) {
|
|
23776
|
+
const category = categoryByRuleId.get(policy.target.ruleId);
|
|
23777
|
+
if (category !== void 0) remoteFloor = remoteCategoryAction.get(category) ?? null;
|
|
23778
|
+
}
|
|
23779
|
+
merged.set(
|
|
23780
|
+
key,
|
|
23781
|
+
remoteFloor !== null && !isActionAtLeast(policy.action, remoteFloor) ? { ...policy, action: remoteFloor } : policy
|
|
23782
|
+
);
|
|
23783
|
+
}
|
|
23784
|
+
const localCategoryAction = /* @__PURE__ */ new Map();
|
|
23785
|
+
for (const policy of merged.values()) {
|
|
23786
|
+
if ("category" in policy.target) localCategoryAction.set(policy.target.category, policy.action);
|
|
23787
|
+
}
|
|
23788
|
+
for (const policy of remotePolicies) {
|
|
23789
|
+
if (!policy.enabled) {
|
|
23790
|
+
disabled.push(policy);
|
|
23791
|
+
continue;
|
|
23792
|
+
}
|
|
23793
|
+
const key = policyKey(policy);
|
|
23794
|
+
const floor = floorFor(policy, categoryByRuleId);
|
|
23795
|
+
let localFloor = null;
|
|
23796
|
+
if ("ruleId" in policy.target) {
|
|
23797
|
+
const category = categoryByRuleId.get(policy.target.ruleId);
|
|
23798
|
+
if (category !== void 0) localFloor = localCategoryAction.get(category) ?? null;
|
|
23799
|
+
}
|
|
23800
|
+
const effectiveFloor = strongerOf(floor, localFloor);
|
|
23801
|
+
const clamped = effectiveFloor !== null && !isActionAtLeast(policy.action, effectiveFloor) ? { ...policy, action: effectiveFloor } : policy;
|
|
23802
|
+
const existing = merged.get(key);
|
|
23803
|
+
if (existing === void 0) {
|
|
23804
|
+
merged.set(key, clamped);
|
|
23805
|
+
continue;
|
|
23806
|
+
}
|
|
23807
|
+
if (actionRank(clamped.action) > actionRank(existing.action)) {
|
|
23808
|
+
merged.set(key, clamped);
|
|
23809
|
+
}
|
|
23810
|
+
}
|
|
23811
|
+
return [...merged.values(), ...disabled];
|
|
23812
|
+
}
|
|
23636
23813
|
var BUILTIN_POLICIES = Object.fromEntries(
|
|
23637
23814
|
KNOWN_BUILTIN_IDS.map((id) => [id, { id, ...BUILTIN_POLICY_SPECS[id] }])
|
|
23638
23815
|
);
|
|
@@ -23866,6 +24043,18 @@ var HistorySyncConsent = external_exports.object({
|
|
|
23866
24043
|
payloadVersion: external_exports.number().int().positive(),
|
|
23867
24044
|
endpoint: external_exports.string()
|
|
23868
24045
|
});
|
|
24046
|
+
var WebChatCaptureConsent = external_exports.object({
|
|
24047
|
+
acknowledgedAt: external_exports.iso.datetime(),
|
|
24048
|
+
version: external_exports.number().int().positive()
|
|
24049
|
+
});
|
|
24050
|
+
var WebChatResponseCapture = external_exports.enum(["with-findings", "always", "never"]);
|
|
24051
|
+
var WebChatCapture = external_exports.object({
|
|
24052
|
+
responses: WebChatResponseCapture.default("with-findings"),
|
|
24053
|
+
account: external_exports.boolean().default(false),
|
|
24054
|
+
// Absent until granted. Presence alone does not authorize anything — see
|
|
24055
|
+
// isWebChatCaptureConsentValid.
|
|
24056
|
+
consent: WebChatCaptureConsent.optional()
|
|
24057
|
+
});
|
|
23869
24058
|
var BODY_RETENTION_DEFAULT_DAYS = 30;
|
|
23870
24059
|
var BodyRetention = external_exports.object({
|
|
23871
24060
|
enabled: external_exports.boolean().default(false),
|
|
@@ -23924,6 +24113,16 @@ var WorkspaceSettings = external_exports.object({
|
|
|
23924
24113
|
// both widenings. Absent until granted, and a grant for a different endpoint
|
|
23925
24114
|
// or an older payload no longer counts.
|
|
23926
24115
|
historySyncConsent: HistorySyncConsent.optional(),
|
|
24116
|
+
// What the browser extension may record from a web chat, and the grant that
|
|
24117
|
+
// authorizes it. Absent until the user answers: recording something that was
|
|
24118
|
+
// never recorded before is never an assumed grant on upgrade, so the whole
|
|
24119
|
+
// block is optional rather than defaulted in. What an absent block means is
|
|
24120
|
+
// webChatCaptureOf's answer, in one place.
|
|
24121
|
+
//
|
|
24122
|
+
// Enforcement is NOT gated on this. A machine that has never answered still
|
|
24123
|
+
// blocks, redacts and warns on what a user sends; the grant covers what is
|
|
24124
|
+
// written down.
|
|
24125
|
+
webChatCapture: WebChatCapture.optional(),
|
|
23927
24126
|
// Local body expiry (see BodyRetention). Off until switched on; expiring a
|
|
23928
24127
|
// body never removes the row or its findings.
|
|
23929
24128
|
bodyRetention: BodyRetention.default({
|
|
@@ -24031,7 +24230,10 @@ function toCaptureAttributes(event) {
|
|
|
24031
24230
|
// `.catchall(z.unknown())` carries the long tail.
|
|
24032
24231
|
...metadata?.model !== void 0 ? { model: metadata.model } : {},
|
|
24033
24232
|
...metadata?.turnIndex !== void 0 ? { turn_index: metadata.turnIndex } : {},
|
|
24034
|
-
|
|
24233
|
+
// A blank id is omitted rather than stored: it is a join key and `''` joins
|
|
24234
|
+
// nothing. This runs on the local write path, which types the event but
|
|
24235
|
+
// never parses it, so EventMetadata's own `.min(1)` does not reach here.
|
|
24236
|
+
...metadata?.messageId !== void 0 && metadata.messageId !== "" ? { message_id: metadata.messageId } : {},
|
|
24035
24237
|
...metadata?.conversationId !== void 0 ? { conversation_id: metadata.conversationId } : {}
|
|
24036
24238
|
};
|
|
24037
24239
|
}
|
|
@@ -24405,12 +24607,14 @@ var RecommendedActionIdParam = external_exports.object({ id: external_exports.st
|
|
|
24405
24607
|
// ../../packages/schema/src/zod/settings-action.ts
|
|
24406
24608
|
var HistorySyncConsentChoice = external_exports.enum(["granted", "revoked", "unchanged"]).meta({ id: "HistorySyncConsentChoice" });
|
|
24407
24609
|
var ModelJudgeConsentChoice = external_exports.enum(["granted", "revoked", "unchanged"]).meta({ id: "ModelJudgeConsentChoice" });
|
|
24610
|
+
var WebChatCaptureConsentChoice = external_exports.enum(["granted", "revoked", "unchanged"]).meta({ id: "WebChatCaptureConsentChoice" });
|
|
24408
24611
|
var SaveSettingsInput = external_exports.object({
|
|
24409
24612
|
historicalAccess: external_exports.string(),
|
|
24410
24613
|
modelJudgeConsent: ModelJudgeConsentChoice,
|
|
24411
24614
|
historySyncConsent: HistorySyncConsentChoice,
|
|
24412
24615
|
vaultConsent: external_exports.string(),
|
|
24413
24616
|
vaultInlineReveal: external_exports.string(),
|
|
24617
|
+
webChatCaptureConsent: WebChatCaptureConsentChoice,
|
|
24414
24618
|
// Widened to `string` like its neighbours rather than typed as
|
|
24415
24619
|
// `RedactFallback`, on this module's own layering rule: shape here, VALUE at
|
|
24416
24620
|
// the call site, so the domain check receives the type it was written for.
|
|
@@ -24625,11 +24829,24 @@ var WebExchange = external_exports.object({
|
|
|
24625
24829
|
turnIndex: external_exports.number().int().nonnegative().optional(),
|
|
24626
24830
|
toolCalls: external_exports.array(WebToolCall).default([]),
|
|
24627
24831
|
// Absent when the adapter recovered no text. Capped by the caller at
|
|
24628
|
-
// RESPONSE_TEXT_MAX_BYTES
|
|
24629
|
-
//
|
|
24832
|
+
// RESPONSE_TEXT_MAX_BYTES, so a short capture is never mistaken for a short
|
|
24833
|
+
// reply.
|
|
24630
24834
|
responseText: external_exports.string().optional(),
|
|
24835
|
+
// The stored text is short of the reply. It does NOT say which of the two
|
|
24836
|
+
// ceilings on this path cut it: the caller applies its own cap on the raw
|
|
24837
|
+
// bytes it reads off the wire, which can be reached by a stream whose
|
|
24838
|
+
// recovered text stays well under RESPONSE_TEXT_MAX_BYTES, and applies that
|
|
24839
|
+
// one to the text. A reader cannot tell them apart, and nothing downstream
|
|
24840
|
+
// should branch as though it could.
|
|
24631
24841
|
truncated: external_exports.boolean().default(false)
|
|
24632
24842
|
});
|
|
24843
|
+
var WebEnforcementState = external_exports.enum([
|
|
24844
|
+
"watching",
|
|
24845
|
+
"composer-only",
|
|
24846
|
+
"button-only",
|
|
24847
|
+
"unattached",
|
|
24848
|
+
"unknown"
|
|
24849
|
+
]);
|
|
24633
24850
|
var RESPONSE_TEXT_MAX_BYTES = 2 * 1024 * 1024;
|
|
24634
24851
|
var WebCaptureStatus = external_exports.object({
|
|
24635
24852
|
patched: external_exports.boolean(),
|
|
@@ -24641,8 +24858,66 @@ var WebCaptureStatus = external_exports.object({
|
|
|
24641
24858
|
unparsedBodies: external_exports.number().int().nonnegative(),
|
|
24642
24859
|
// The adapter-declared JSON key paths that were absent from a real payload —
|
|
24643
24860
|
// the earliest signal that a site's contract moved.
|
|
24644
|
-
shapeMisses: external_exports.array(external_exports.string()).default([])
|
|
24645
|
-
|
|
24861
|
+
shapeMisses: external_exports.array(external_exports.string()).default([]),
|
|
24862
|
+
// How many `kind: 'conversation'` endpoints the reporting tab's adapter
|
|
24863
|
+
// compiled. Zero means this build declares none for the site, so observing
|
|
24864
|
+
// nothing is the design rather than a fault — the one fact that separates a
|
|
24865
|
+
// site nobody has surveyed yet from one whose contract moved. Defaulted so a
|
|
24866
|
+
// build predating the field is read as declaring nothing rather than refused.
|
|
24867
|
+
conversationEndpoints: external_exports.number().int().nonnegative().default(0),
|
|
24868
|
+
// The document that sent this report is going away. The bridge sets it on
|
|
24869
|
+
// its `pagehide` report and nowhere else.
|
|
24870
|
+
//
|
|
24871
|
+
// A property of the REPORT rather than of capture health, which is why
|
|
24872
|
+
// nothing in `deriveWebCaptureState` reads it and why it stays out of the
|
|
24873
|
+
// bridge's own report signature — a closing tab's last word must not be
|
|
24874
|
+
// suppressed for carrying the same health as the report before it. What
|
|
24875
|
+
// reads it is the per-site fold: a document that said it was unloading stops
|
|
24876
|
+
// voting on the site's state, so the reload the `blind` remediation asks for
|
|
24877
|
+
// can actually clear the verdict it was shown. A document that dies without
|
|
24878
|
+
// sending one is covered by CAPTURE_STATUS_DOCUMENT_QUIET_MS instead.
|
|
24879
|
+
//
|
|
24880
|
+
// Defaulted so a build predating the field reads as a document that never
|
|
24881
|
+
// said it was closing — which keeps it voting, the same as every report that
|
|
24882
|
+
// is not a final one.
|
|
24883
|
+
closed: external_exports.boolean().default(false),
|
|
24884
|
+
// What the DOM enforcement path is doing, which none of the counters above
|
|
24885
|
+
// can say: `sendsSeenDom` rises only once a send has COMPLETED, so a tab
|
|
24886
|
+
// whose watcher never bound reports zero exactly like a tab nobody typed in.
|
|
24887
|
+
// Defaulted to 'unknown' rather than 'watching' so a status from a build
|
|
24888
|
+
// predating the field is not read as reporting a healthy one.
|
|
24889
|
+
enforcement: WebEnforcementState.default("unknown")
|
|
24890
|
+
});
|
|
24891
|
+
function webCaptureStatusObservedTurnPath(status) {
|
|
24892
|
+
if (!status.patched) return true;
|
|
24893
|
+
if (status.conversationEndpoints === 0) return true;
|
|
24894
|
+
return status.blind || status.shapeMisses.length > 0 || status.parseFailures > 0 || status.unparsedBodies > 0 || status.exchangesSeenNet > 0;
|
|
24895
|
+
}
|
|
24896
|
+
function pickReportedCaptureStatus(candidates) {
|
|
24897
|
+
return candidates.find((c) => webCaptureStatusObservedTurnPath(c.status)) ?? candidates[0];
|
|
24898
|
+
}
|
|
24899
|
+
var CAPTURE_STATUS_RECENCY_MS = 30 * 24 * 60 * 60 * 1e3;
|
|
24900
|
+
var CAPTURE_STATUS_RECENCY_DAYS = CAPTURE_STATUS_RECENCY_MS / (24 * 60 * 60 * 1e3);
|
|
24901
|
+
var CAPTURE_STATUS_DOCUMENT_QUIET_MS = 12 * 60 * 60 * 1e3;
|
|
24902
|
+
function fromCaptureStatusAttributes(bag) {
|
|
24903
|
+
const parsedBag = CaptureStatusAttributes.safeParse(bag);
|
|
24904
|
+
if (!parsedBag.success) return null;
|
|
24905
|
+
const b = parsedBag.data;
|
|
24906
|
+
const parsedStatus = WebCaptureStatus.safeParse({
|
|
24907
|
+
patched: b.patched,
|
|
24908
|
+
live: b.live,
|
|
24909
|
+
blind: b.blind,
|
|
24910
|
+
sendsSeenDom: b.sends_seen_dom,
|
|
24911
|
+
exchangesSeenNet: b.exchanges_seen_net,
|
|
24912
|
+
parseFailures: b.parse_failures,
|
|
24913
|
+
unparsedBodies: b.unparsed_bodies,
|
|
24914
|
+
shapeMisses: b.shape_misses,
|
|
24915
|
+
conversationEndpoints: b.conversation_endpoints,
|
|
24916
|
+
closed: b.closed,
|
|
24917
|
+
enforcement: b.enforcement
|
|
24918
|
+
});
|
|
24919
|
+
return parsedStatus.success ? parsedStatus.data : null;
|
|
24920
|
+
}
|
|
24646
24921
|
|
|
24647
24922
|
// ../../packages/persistence/src/paths.ts
|
|
24648
24923
|
import {
|
|
@@ -24773,17 +25048,6 @@ function publishByLink(tmp, file2, data) {
|
|
|
24773
25048
|
function controlPlaneCredentialPath(settingsDir2) {
|
|
24774
25049
|
return join2(settingsDir2, ATTACHED_CREDENTIAL_FILENAME);
|
|
24775
25050
|
}
|
|
24776
|
-
var LOOPBACK_HOSTS = /* @__PURE__ */ new Set(["localhost", "127.0.0.1", "::1", "[::1]"]);
|
|
24777
|
-
function isSafeEndpoint(endpoint) {
|
|
24778
|
-
let parsed2;
|
|
24779
|
-
try {
|
|
24780
|
-
parsed2 = new URL(endpoint);
|
|
24781
|
-
} catch {
|
|
24782
|
-
return false;
|
|
24783
|
-
}
|
|
24784
|
-
if (parsed2.protocol === "https:") return true;
|
|
24785
|
-
return parsed2.protocol === "http:" && LOOPBACK_HOSTS.has(parsed2.hostname);
|
|
24786
|
-
}
|
|
24787
25051
|
function repairOrRefuseMode(file2) {
|
|
24788
25052
|
const link = lstatSync2(file2, { throwIfNoEntry: false });
|
|
24789
25053
|
if (link === void 0) return "absent";
|
|
@@ -26576,7 +26840,7 @@ var SESSION_ROOT = `event_type = 'session'`;
|
|
|
26576
26840
|
var HAS_ACTIVITY = `EXISTS (
|
|
26577
26841
|
SELECT 1 FROM audit_events c
|
|
26578
26842
|
WHERE c.root_session_id = audit_events.id
|
|
26579
|
-
AND c.event_type NOT IN ('hook', 'config_scan'))`;
|
|
26843
|
+
AND c.event_type NOT IN ('hook', 'config_scan', 'capture_status'))`;
|
|
26580
26844
|
var SqliteActivityRepository = class {
|
|
26581
26845
|
constructor(db, now = () => Date.now()) {
|
|
26582
26846
|
this.db = db;
|
|
@@ -26603,10 +26867,10 @@ var SqliteActivityRepository = class {
|
|
|
26603
26867
|
SELECT id FROM audit_events WHERE event_type = 'session' AND started_at >= ?
|
|
26604
26868
|
UNION
|
|
26605
26869
|
SELECT root_session_id FROM audit_events INDEXED BY idx_audit_started_at
|
|
26606
|
-
WHERE started_at >= ?
|
|
26870
|
+
WHERE started_at >= ? AND event_type <> 'capture_status'
|
|
26607
26871
|
UNION
|
|
26608
26872
|
SELECT root_session_id FROM audit_events INDEXED BY idx_audit_ended_at
|
|
26609
|
-
WHERE ended_at >= ?)`,
|
|
26873
|
+
WHERE ended_at >= ? AND event_type <> 'capture_status')`,
|
|
26610
26874
|
[liveThreshold, liveThreshold, liveThreshold]
|
|
26611
26875
|
);
|
|
26612
26876
|
const toolCallsToday = countScalar(
|
|
@@ -27013,7 +27277,10 @@ var SqliteAuditEventsRepository = class {
|
|
|
27013
27277
|
attributes = excluded.attributes,
|
|
27014
27278
|
ended_at = excluded.ended_at
|
|
27015
27279
|
WHERE COALESCE(json_extract(excluded.attributes, '$.output_tokens'), 0)
|
|
27016
|
-
> COALESCE(json_extract(audit_events.attributes, '$.output_tokens'), 0)
|
|
27280
|
+
> COALESCE(json_extract(audit_events.attributes, '$.output_tokens'), 0)
|
|
27281
|
+
OR (json_extract(excluded.attributes, '$.usage_source') IS NOT NULL
|
|
27282
|
+
AND json_extract(excluded.attributes, '$.output_tokens') IS NULL
|
|
27283
|
+
AND excluded.attributes <> audit_events.attributes)`
|
|
27017
27284
|
);
|
|
27018
27285
|
this.upsertSessionRootStmt = db.prepare(
|
|
27019
27286
|
`INSERT OR IGNORE INTO audit_events
|
|
@@ -27281,6 +27548,87 @@ var SqliteBodyRetentionRepository = class {
|
|
|
27281
27548
|
}
|
|
27282
27549
|
};
|
|
27283
27550
|
|
|
27551
|
+
// ../../packages/persistence/src/repositories/capture-status.ts
|
|
27552
|
+
var STATUS_LOOKBACK_ROWS = 128;
|
|
27553
|
+
var SqliteCaptureStatusRepository = class {
|
|
27554
|
+
constructor(db) {
|
|
27555
|
+
this.db = db;
|
|
27556
|
+
this.recentStmt = db.prepare(
|
|
27557
|
+
`SELECT a.started_at AS startedAt,
|
|
27558
|
+
a.attributes AS attributes,
|
|
27559
|
+
a.root_session_id AS rootSessionId
|
|
27560
|
+
FROM audit_events a
|
|
27561
|
+
WHERE a.event_type = 'capture_status'
|
|
27562
|
+
AND a.source_tool = ?
|
|
27563
|
+
AND a.started_at >= ?
|
|
27564
|
+
ORDER BY a.started_at DESC, a.id DESC
|
|
27565
|
+
LIMIT ?`
|
|
27566
|
+
);
|
|
27567
|
+
}
|
|
27568
|
+
db;
|
|
27569
|
+
recentStmt;
|
|
27570
|
+
/**
|
|
27571
|
+
* Every document that reported for a site, in registry order by site, from
|
|
27572
|
+
* the last `CAPTURE_STATUS_RECENCY_MS`.
|
|
27573
|
+
*
|
|
27574
|
+
* SEVERAL per site, not one: a browser is many documents and each reports
|
|
27575
|
+
* for itself, so one row per site is a choice about which of them a user
|
|
27576
|
+
* sees — and the newest is the wrong one, since a healthy tab writing a
|
|
27577
|
+
* fresh report would hide a drifting tab's verdict, which is the whole
|
|
27578
|
+
* reason these rows exist. The pick WITHIN a document is made here (the
|
|
27579
|
+
* unchanged `pickReportedCaptureStatus`, over that document's own rows);
|
|
27580
|
+
* choosing between documents belongs where the state semantics live, and
|
|
27581
|
+
* that is `reportedCaptureDocumentForSite` in `@akasecurity/detections` —
|
|
27582
|
+
* this package may not import it.
|
|
27583
|
+
*
|
|
27584
|
+
* `now` is a required argument rather than a `Date.now()` read, so a caller
|
|
27585
|
+
* that already holds a render instant passes THAT one and a test can drive
|
|
27586
|
+
* the window without moving the wall clock.
|
|
27587
|
+
*
|
|
27588
|
+
* A site whose reports have all aged out contributes nothing, so it derives
|
|
27589
|
+
* to `unreported`. That is the point: nothing but the browser extension ever
|
|
27590
|
+
* writes these rows, so an uninstalled extension's last verdict would
|
|
27591
|
+
* otherwise stand as a live claim for ever with no later report able to
|
|
27592
|
+
* clear it.
|
|
27593
|
+
*/
|
|
27594
|
+
latest(now) {
|
|
27595
|
+
const since = now - CAPTURE_STATUS_RECENCY_MS;
|
|
27596
|
+
const documents = [];
|
|
27597
|
+
for (const tool of WebSourceTool.options) {
|
|
27598
|
+
const rows = /* @__PURE__ */ new Map();
|
|
27599
|
+
const lastWord = /* @__PURE__ */ new Map();
|
|
27600
|
+
for (const row of allRows(this.recentStmt, [
|
|
27601
|
+
tool,
|
|
27602
|
+
since,
|
|
27603
|
+
STATUS_LOOKBACK_ROWS
|
|
27604
|
+
])) {
|
|
27605
|
+
const status = fromCaptureStatusAttributes(parseJsonObject(row.attributes));
|
|
27606
|
+
if (status === null) continue;
|
|
27607
|
+
const record2 = { tool, observedAt: epochMillisToIso(row.startedAt), status };
|
|
27608
|
+
const group = rows.get(row.rootSessionId);
|
|
27609
|
+
if (group === void 0) {
|
|
27610
|
+
rows.set(row.rootSessionId, [record2]);
|
|
27611
|
+
lastWord.set(row.rootSessionId, { at: record2.observedAt, closed: status.closed });
|
|
27612
|
+
} else {
|
|
27613
|
+
group.push(record2);
|
|
27614
|
+
}
|
|
27615
|
+
}
|
|
27616
|
+
for (const [root, candidates] of rows) {
|
|
27617
|
+
const picked = pickReportedCaptureStatus(candidates);
|
|
27618
|
+
const last = lastWord.get(root);
|
|
27619
|
+
if (picked === void 0 || last === void 0) continue;
|
|
27620
|
+
documents.push({
|
|
27621
|
+
...picked,
|
|
27622
|
+
...root === null ? {} : { rootSessionId: root },
|
|
27623
|
+
lastReportAt: last.at,
|
|
27624
|
+
closed: last.closed
|
|
27625
|
+
});
|
|
27626
|
+
}
|
|
27627
|
+
}
|
|
27628
|
+
return documents;
|
|
27629
|
+
}
|
|
27630
|
+
};
|
|
27631
|
+
|
|
27284
27632
|
// ../../packages/persistence/src/repositories/classified-data.ts
|
|
27285
27633
|
var SqliteClassifiedDataRepository = class {
|
|
27286
27634
|
constructor(db) {
|
|
@@ -32861,6 +33209,7 @@ function openAndInitialize(file2, base, skipTags) {
|
|
|
32861
33209
|
activity: new SqliteActivityRepository(db),
|
|
32862
33210
|
sourceProject: new SqliteSourceProjectRepository(db),
|
|
32863
33211
|
auditEvents: new SqliteAuditEventsRepository(db),
|
|
33212
|
+
captureStatus: new SqliteCaptureStatusRepository(db),
|
|
32864
33213
|
classifiedData: new SqliteClassifiedDataRepository(db),
|
|
32865
33214
|
inspectionDefinitions: new SqliteInspectionDefinitionsRepository(db),
|
|
32866
33215
|
inspectionFindings: new SqliteInspectionFindingsRepository(db),
|
|
@@ -32901,6 +33250,7 @@ function openLocalDatabase(dir, options = {}) {
|
|
|
32901
33250
|
activity,
|
|
32902
33251
|
sourceProject,
|
|
32903
33252
|
auditEvents,
|
|
33253
|
+
captureStatus,
|
|
32904
33254
|
classifiedData,
|
|
32905
33255
|
inspectionDefinitions,
|
|
32906
33256
|
inspectionFindings,
|
|
@@ -33118,6 +33468,7 @@ function openLocalDatabase(dir, options = {}) {
|
|
|
33118
33468
|
activity,
|
|
33119
33469
|
sourceProject,
|
|
33120
33470
|
auditEvents,
|
|
33471
|
+
captureStatus,
|
|
33121
33472
|
classifiedData,
|
|
33122
33473
|
inspectionDefinitions,
|
|
33123
33474
|
inspectionFindings,
|
|
@@ -33363,11 +33714,6 @@ function fingerprintValue(key, raw) {
|
|
|
33363
33714
|
// ../../packages/persistence/src/forward-health.ts
|
|
33364
33715
|
import { readFileSync as readFileSync7 } from "fs";
|
|
33365
33716
|
import { join as join9 } from "path";
|
|
33366
|
-
var FAILURES = /* @__PURE__ */ new Set([
|
|
33367
|
-
"unauthorized",
|
|
33368
|
-
"forbidden",
|
|
33369
|
-
"unreachable"
|
|
33370
|
-
]);
|
|
33371
33717
|
var BREAKER_COOLDOWN_MS = 3e4;
|
|
33372
33718
|
function parseForwardHealth(raw, nowMs) {
|
|
33373
33719
|
try {
|
|
@@ -33376,7 +33722,8 @@ function parseForwardHealth(raw, nowMs) {
|
|
|
33376
33722
|
const record2 = parsed2;
|
|
33377
33723
|
const failures = typeof record2.consecutiveFailures === "number" && record2.consecutiveFailures >= 0 ? record2.consecutiveFailures : 0;
|
|
33378
33724
|
const openedAtMs = typeof record2.openedAtMs === "number" && Number.isFinite(record2.openedAtMs) && record2.openedAtMs <= nowMs ? record2.openedAtMs : null;
|
|
33379
|
-
const
|
|
33725
|
+
const parsedFailure = ControlPlaneFailure.safeParse(record2.lastFailure);
|
|
33726
|
+
const lastFailure = parsedFailure.success ? parsedFailure.data : null;
|
|
33380
33727
|
return { consecutiveFailures: failures, openedAtMs, lastFailure };
|
|
33381
33728
|
} catch {
|
|
33382
33729
|
return null;
|
|
@@ -35417,6 +35764,56 @@ var CONFIG_POSTURE_RULES = [
|
|
|
35417
35764
|
}
|
|
35418
35765
|
];
|
|
35419
35766
|
|
|
35767
|
+
// ../../packages/detections/src/posture/web-capture-posture.ts
|
|
35768
|
+
var RULE_VERSION2 = "1";
|
|
35769
|
+
var DRIFT_MIN_PARSE_FAILURES = 2;
|
|
35770
|
+
var WEB_CAPTURE_DRIFT_STATES = /* @__PURE__ */ new Set([
|
|
35771
|
+
"blind",
|
|
35772
|
+
"degraded"
|
|
35773
|
+
]);
|
|
35774
|
+
var WEB_CAPTURE_DRIFT_RULE = {
|
|
35775
|
+
ruleId: "web-capture-drift",
|
|
35776
|
+
version: RULE_VERSION2,
|
|
35777
|
+
name: "Web chat capture is not reading the site",
|
|
35778
|
+
category: "config",
|
|
35779
|
+
severity: "medium",
|
|
35780
|
+
definition: JSON.stringify({
|
|
35781
|
+
kind: "web-capture-drift",
|
|
35782
|
+
states: [...WEB_CAPTURE_DRIFT_STATES],
|
|
35783
|
+
minParseFailures: DRIFT_MIN_PARSE_FAILURES
|
|
35784
|
+
})
|
|
35785
|
+
};
|
|
35786
|
+
var STATIC_COPY = {
|
|
35787
|
+
active: { headline: "turns are being observed on this site" },
|
|
35788
|
+
unreported: {
|
|
35789
|
+
// Says "recently" rather than "yet": the store read is bounded to
|
|
35790
|
+
// CAPTURE_STATUS_RECENCY_MS, so this state covers a site nothing has ever
|
|
35791
|
+
// reported for AND one whose last report has aged out. The two are the
|
|
35792
|
+
// same fact to a reader — nobody has confirmed anything lately — and the
|
|
35793
|
+
// copy may not claim the stronger of them.
|
|
35794
|
+
headline: `no report in the last ${String(CAPTURE_STATUS_RECENCY_DAYS)} days \u2014 open the site in Chrome with the extension loaded`
|
|
35795
|
+
},
|
|
35796
|
+
standby: {
|
|
35797
|
+
headline: "this build declares no endpoints for the site, so nothing is observed yet"
|
|
35798
|
+
},
|
|
35799
|
+
unpatched: {
|
|
35800
|
+
// Says what the flags say and no more. `patched` is false both for a tap
|
|
35801
|
+
// that installed and hooked neither transport and for one that never ran
|
|
35802
|
+
// at all — a page reports the same status either way, so the copy may not
|
|
35803
|
+
// assert one of them.
|
|
35804
|
+
headline: "the page tap captured neither fetch nor XHR \u2014 it may not have installed; reload the extension at chrome://extensions"
|
|
35805
|
+
},
|
|
35806
|
+
idle: { headline: "watching; no turn has been observed yet" },
|
|
35807
|
+
blind: {
|
|
35808
|
+
headline: "messages were sent in the page that the network capture never saw",
|
|
35809
|
+
remediation: "reload the tab. If it persists after `aka update` and reloading the extension at chrome://extensions, the site's send path has changed and needs a new extension build."
|
|
35810
|
+
},
|
|
35811
|
+
degraded: {
|
|
35812
|
+
headline: "the site's payloads no longer carry the fields the extension reads",
|
|
35813
|
+
remediation: "run `aka update`, then reload the extension at chrome://extensions. If it stays degraded after an update, the site's contract has changed and needs a new extension build."
|
|
35814
|
+
}
|
|
35815
|
+
};
|
|
35816
|
+
|
|
35420
35817
|
// ../../packages/detections/src/security/redos-probe.ts
|
|
35421
35818
|
var BUDGET_MS = 100;
|
|
35422
35819
|
var EXPONENTIAL_UNITS = [
|
|
@@ -38200,10 +38597,31 @@ function matchProhibitedSpawnModel(requested, prohibited) {
|
|
|
38200
38597
|
});
|
|
38201
38598
|
}
|
|
38202
38599
|
var TAIL_BYTES = 256 * 1024;
|
|
38600
|
+
var SWITCH_MODEL_REMEDY = "Switch to an approved model with /model";
|
|
38601
|
+
var WORDING = {
|
|
38602
|
+
switch: {
|
|
38603
|
+
subject: (model) => `Cannot switch to ${model}`,
|
|
38604
|
+
remedy: SWITCH_MODEL_REMEDY
|
|
38605
|
+
},
|
|
38606
|
+
turn: {
|
|
38607
|
+
subject: (model) => `This session is running on ${model}, which cannot be used`,
|
|
38608
|
+
remedy: SWITCH_MODEL_REMEDY
|
|
38609
|
+
},
|
|
38610
|
+
spawn: {
|
|
38611
|
+
subject: (model) => `Cannot start a subagent on ${model}`,
|
|
38612
|
+
remedy: "Name an approved model on the subagent"
|
|
38613
|
+
},
|
|
38614
|
+
request: {
|
|
38615
|
+
subject: (model) => `Cannot use ${model} for this request`,
|
|
38616
|
+
remedy: "Change the model this application requests"
|
|
38617
|
+
}
|
|
38618
|
+
};
|
|
38619
|
+
function lookupWording(action) {
|
|
38620
|
+
return Object.hasOwn(WORDING, action) ? WORDING[action] : void 0;
|
|
38621
|
+
}
|
|
38203
38622
|
function prohibitedModelMessage(model, action) {
|
|
38204
|
-
const subject
|
|
38205
|
-
|
|
38206
|
-
return `${subject} \u2014 your organization has prohibited this model. ${remedy}, or ask an administrator to change its status in AKA under Govern \u2192 LLM Providers.`;
|
|
38623
|
+
const { subject, remedy } = lookupWording(action) ?? WORDING.turn;
|
|
38624
|
+
return `${subject(model)} \u2014 your organization has prohibited this model. ${remedy}, or ask an administrator to change its status in AKA under Govern \u2192 LLM Providers.`;
|
|
38207
38625
|
}
|
|
38208
38626
|
function buildModelRefusalEvent(input2) {
|
|
38209
38627
|
return {
|
|
@@ -39591,6 +40009,12 @@ var RemoteRequestInvalid = class extends Error {
|
|
|
39591
40009
|
}
|
|
39592
40010
|
cause;
|
|
39593
40011
|
};
|
|
40012
|
+
var RemoteEndpointRefused = class extends Error {
|
|
40013
|
+
constructor(endpoint) {
|
|
40014
|
+
super(`refusing to talk to an unsafe control-plane endpoint: ${originOnly(endpoint)}`);
|
|
40015
|
+
this.name = "RemoteEndpointRefused";
|
|
40016
|
+
}
|
|
40017
|
+
};
|
|
39594
40018
|
var RemoteResponseInvalid = class extends Error {
|
|
39595
40019
|
constructor(route, detail) {
|
|
39596
40020
|
super(`control plane answered ${route} with ${detail}`);
|
|
@@ -39743,14 +40167,15 @@ function parsed(schema, body, route) {
|
|
|
39743
40167
|
}
|
|
39744
40168
|
return result.data;
|
|
39745
40169
|
}
|
|
39746
|
-
function
|
|
40170
|
+
function resolveBaseUrl(endpoint) {
|
|
40171
|
+
if (!isSafeEndpoint(endpoint)) throw new RemoteEndpointRefused(endpoint);
|
|
39747
40172
|
let end = endpoint.length;
|
|
39748
40173
|
while (end > 0 && endpoint.charCodeAt(end - 1) === SLASH2) end -= 1;
|
|
39749
40174
|
return endpoint.slice(0, end);
|
|
39750
40175
|
}
|
|
39751
40176
|
var SLASH2 = "/".charCodeAt(0);
|
|
39752
40177
|
function createRemoteClient(options) {
|
|
39753
|
-
const base =
|
|
40178
|
+
const base = resolveBaseUrl(options.endpoint);
|
|
39754
40179
|
const url2 = (route) => `${base}${route}`;
|
|
39755
40180
|
const common = { apiKey: options.apiKey, timeoutMs: options.timeoutMs };
|
|
39756
40181
|
const sendOne = async (event) => {
|
|
@@ -39880,6 +40305,7 @@ function classifyRemoteFailure(err) {
|
|
|
39880
40305
|
case "RemoteRouteAbsent":
|
|
39881
40306
|
return "route-absent";
|
|
39882
40307
|
case "RemoteRequestInvalid":
|
|
40308
|
+
case "RemoteEndpointRefused":
|
|
39883
40309
|
return "invalid-request";
|
|
39884
40310
|
case "RemoteResponseInvalid":
|
|
39885
40311
|
return "rejected";
|
|
@@ -40083,86 +40509,10 @@ function createForwardPolicy(deps) {
|
|
|
40083
40509
|
}
|
|
40084
40510
|
|
|
40085
40511
|
// ../../packages/plugin-runtime/src/attached/gateway.ts
|
|
40086
|
-
|
|
40087
|
-
|
|
40088
|
-
|
|
40089
|
-
return
|
|
40090
|
-
}
|
|
40091
|
-
function ruleCategoryMap(wireRules, localRules) {
|
|
40092
|
-
const map2 = /* @__PURE__ */ new Map();
|
|
40093
|
-
for (const rule of wireRules ?? []) map2.set(rule.id, rule.category);
|
|
40094
|
-
for (const rule of localRules ?? []) map2.set(rule.id, rule.category);
|
|
40095
|
-
for (const pack of bundledDetections()) {
|
|
40096
|
-
for (const rule of pack.rules) map2.set(rule.id, rule.category);
|
|
40097
|
-
}
|
|
40098
|
-
return map2;
|
|
40099
|
-
}
|
|
40100
|
-
function policyKey(policy) {
|
|
40101
|
-
return "ruleId" in policy.target ? `rule:${policy.target.ruleId}` : `category:${policy.target.category}`;
|
|
40102
|
-
}
|
|
40103
|
-
function floorFor(policy, categoryByRuleId) {
|
|
40104
|
-
const category = "category" in policy.target ? policy.target.category : categoryByRuleId.get(policy.target.ruleId);
|
|
40105
|
-
return category === void 0 ? null : DEFAULT_ACTIONS[category];
|
|
40106
|
-
}
|
|
40107
|
-
function mergeRaiseOnly(localPolicies, remotePolicies, categoryByRuleId) {
|
|
40108
|
-
const merged = /* @__PURE__ */ new Map();
|
|
40109
|
-
const disabled = [];
|
|
40110
|
-
const remoteCategoryAction = /* @__PURE__ */ new Map();
|
|
40111
|
-
for (const policy of remotePolicies) {
|
|
40112
|
-
if (!policy.enabled) continue;
|
|
40113
|
-
if (!("category" in policy.target)) continue;
|
|
40114
|
-
if (remoteCategoryAction.has(policy.target.category)) continue;
|
|
40115
|
-
const floor = floorFor(policy, categoryByRuleId);
|
|
40116
|
-
remoteCategoryAction.set(
|
|
40117
|
-
policy.target.category,
|
|
40118
|
-
floor !== null && !isActionAtLeast(policy.action, floor) ? floor : policy.action
|
|
40119
|
-
);
|
|
40120
|
-
}
|
|
40121
|
-
for (const policy of localPolicies) {
|
|
40122
|
-
if (!policy.enabled) {
|
|
40123
|
-
disabled.push(policy);
|
|
40124
|
-
continue;
|
|
40125
|
-
}
|
|
40126
|
-
const key = policyKey(policy);
|
|
40127
|
-
if (merged.has(key)) continue;
|
|
40128
|
-
let remoteFloor = null;
|
|
40129
|
-
if ("ruleId" in policy.target) {
|
|
40130
|
-
const category = categoryByRuleId.get(policy.target.ruleId);
|
|
40131
|
-
if (category !== void 0) remoteFloor = remoteCategoryAction.get(category) ?? null;
|
|
40132
|
-
}
|
|
40133
|
-
merged.set(
|
|
40134
|
-
key,
|
|
40135
|
-
remoteFloor !== null && !isActionAtLeast(policy.action, remoteFloor) ? { ...policy, action: remoteFloor } : policy
|
|
40136
|
-
);
|
|
40137
|
-
}
|
|
40138
|
-
const localCategoryAction = /* @__PURE__ */ new Map();
|
|
40139
|
-
for (const policy of merged.values()) {
|
|
40140
|
-
if ("category" in policy.target) localCategoryAction.set(policy.target.category, policy.action);
|
|
40141
|
-
}
|
|
40142
|
-
for (const policy of remotePolicies) {
|
|
40143
|
-
if (!policy.enabled) {
|
|
40144
|
-
disabled.push(policy);
|
|
40145
|
-
continue;
|
|
40146
|
-
}
|
|
40147
|
-
const key = policyKey(policy);
|
|
40148
|
-
const floor = floorFor(policy, categoryByRuleId);
|
|
40149
|
-
let localFloor = null;
|
|
40150
|
-
if ("ruleId" in policy.target) {
|
|
40151
|
-
const category = categoryByRuleId.get(policy.target.ruleId);
|
|
40152
|
-
if (category !== void 0) localFloor = localCategoryAction.get(category) ?? null;
|
|
40153
|
-
}
|
|
40154
|
-
const effectiveFloor = strongerOf(floor, localFloor);
|
|
40155
|
-
const clamped = effectiveFloor !== null && !isActionAtLeast(policy.action, effectiveFloor) ? { ...policy, action: effectiveFloor } : policy;
|
|
40156
|
-
const existing = merged.get(key);
|
|
40157
|
-
if (existing === void 0) {
|
|
40158
|
-
merged.set(key, clamped);
|
|
40159
|
-
continue;
|
|
40160
|
-
}
|
|
40161
|
-
if (actionRank(clamped.action) > actionRank(existing.action)) {
|
|
40162
|
-
merged.set(key, clamped);
|
|
40163
|
-
}
|
|
40164
|
-
}
|
|
40165
|
-
return [...merged.values(), ...disabled];
|
|
40512
|
+
var bundledRulesFlatCache;
|
|
40513
|
+
function bundledRulesFlat() {
|
|
40514
|
+
bundledRulesFlatCache ??= bundledDetections().flatMap((pack) => pack.rules);
|
|
40515
|
+
return bundledRulesFlatCache;
|
|
40166
40516
|
}
|
|
40167
40517
|
var AttachedDataGateway = class {
|
|
40168
40518
|
constructor(deps) {
|
|
@@ -40482,6 +40832,9 @@ var AttachedDataGateway = class {
|
|
|
40482
40832
|
async readSessionProvider(sessionId) {
|
|
40483
40833
|
return this.deps.local.readSessionProvider(sessionId);
|
|
40484
40834
|
}
|
|
40835
|
+
async readCaptureStatuses() {
|
|
40836
|
+
return this.deps.local.readCaptureStatuses();
|
|
40837
|
+
}
|
|
40485
40838
|
async facets() {
|
|
40486
40839
|
return this.deps.local.facets();
|
|
40487
40840
|
}
|
|
@@ -40564,7 +40917,7 @@ var AttachedDataGateway = class {
|
|
|
40564
40917
|
policies: mergeRaiseOnly(
|
|
40565
40918
|
local.policies,
|
|
40566
40919
|
cached2.policies,
|
|
40567
|
-
ruleCategoryMap(cached2.rules, local.rules)
|
|
40920
|
+
ruleCategoryMap(cached2.rules, local.rules, bundledRulesFlat())
|
|
40568
40921
|
),
|
|
40569
40922
|
customKeywords: [...local.customKeywords, ...cached2.customKeywords],
|
|
40570
40923
|
// TAKEN FROM THE CACHE, unlike the two fields below — and the asymmetry
|
|
@@ -40765,10 +41118,15 @@ import { join as join29 } from "path";
|
|
|
40765
41118
|
// ../../packages/plugin-runtime/src/attached/atomic-publish.ts
|
|
40766
41119
|
import { rename as rename2 } from "fs/promises";
|
|
40767
41120
|
var RETRYABLE = /* @__PURE__ */ new Set(["EPERM", "EACCES", "EBUSY"]);
|
|
40768
|
-
var
|
|
41121
|
+
var IMMEDIATE_RETRIES = 8;
|
|
41122
|
+
var TIMED_RETRIES = 4;
|
|
41123
|
+
var ATTEMPTS = 1 + IMMEDIATE_RETRIES + TIMED_RETRIES;
|
|
40769
41124
|
var delay = (ms) => new Promise((resolve2) => {
|
|
40770
41125
|
setTimeout(resolve2, ms);
|
|
40771
41126
|
});
|
|
41127
|
+
var yieldToLoop = () => new Promise((resolve2) => {
|
|
41128
|
+
setImmediate(resolve2);
|
|
41129
|
+
});
|
|
40772
41130
|
async function publishByRename(tmp, file2, move = rename2) {
|
|
40773
41131
|
for (let attempt = 1; ; attempt += 1) {
|
|
40774
41132
|
try {
|
|
@@ -40777,7 +41135,7 @@ async function publishByRename(tmp, file2, move = rename2) {
|
|
|
40777
41135
|
} catch (err) {
|
|
40778
41136
|
const code = err.code;
|
|
40779
41137
|
if (attempt >= ATTEMPTS || code === void 0 || !RETRYABLE.has(code)) throw err;
|
|
40780
|
-
await delay(attempt * 10);
|
|
41138
|
+
await (attempt <= IMMEDIATE_RETRIES ? yieldToLoop() : delay((attempt - IMMEDIATE_RETRIES) * 10));
|
|
40781
41139
|
}
|
|
40782
41140
|
}
|
|
40783
41141
|
}
|
|
@@ -41241,6 +41599,9 @@ var StandaloneDataGateway = class {
|
|
|
41241
41599
|
readSessionProvider(sessionId) {
|
|
41242
41600
|
return Promise.resolve(this.db.auditEvents.sessionProvider(sessionId));
|
|
41243
41601
|
}
|
|
41602
|
+
readCaptureStatuses() {
|
|
41603
|
+
return Promise.resolve(this.db.captureStatus.latest(Date.now()));
|
|
41604
|
+
}
|
|
41244
41605
|
facets() {
|
|
41245
41606
|
return Promise.resolve(this.db.facets());
|
|
41246
41607
|
}
|