-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregistry.v1.json
More file actions
265 lines (265 loc) · 8.89 KB
/
registry.v1.json
File metadata and controls
265 lines (265 loc) · 8.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
{
"v": 1,
"detectors": [
{
"detector_id": "general.security.cors_preflight_fail.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "security",
"run_scope": "interaction",
"inputs": ["network_requests", "network_responses", "network_completion", "interactions"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["cors", "preflight"],
"description": "OPTIONS preflight failure before follow-up request."
},
{
"detector_id": "general.security.missing_acao.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "security",
"run_scope": "interaction",
"inputs": ["network_requests", "network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["cors", "acao"],
"description": "Cross-origin response missing Access-Control-Allow-Origin header."
},
{
"detector_id": "general.security.credentials_widlcard.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "security",
"run_scope": "interaction",
"inputs": ["network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["cors", "credentials"],
"description": "Wildcard ACAO used with credentials enabled."
},
{
"detector_id": "general.security.csp_console.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "security",
"run_scope": "session",
"inputs": ["console_entries", "patterns.console.v1.json"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["csp", "console"],
"description": "CSP violation pattern in console output."
},
{
"detector_id": "general.auth.primary_401_403.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "auth",
"run_scope": "interaction",
"inputs": ["interactions", "network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["auth", "status"],
"description": "Primary interaction request returned 401 or 403."
},
{
"detector_id": "general.resilience.http_429.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "resilience",
"run_scope": "interaction",
"inputs": ["network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["429", "rate_limit"],
"description": "HTTP 429 responses in an interaction."
},
{
"detector_id": "general.resilience.http_5xx_burst.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "resilience",
"run_scope": "interaction",
"inputs": ["network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": ["threshold.http_5xx_burst.count"],
"tags": ["5xx", "burst"],
"description": "Multiple 5xx responses in one interaction."
},
{
"detector_id": "general.client.blocked_by_client.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "client",
"run_scope": "session",
"inputs": ["network_completion", "console_entries"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["blocked_by_client"],
"description": "Request blocked by client-side tooling."
},
{
"detector_id": "general.security.mixed_content.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "security",
"run_scope": "interaction",
"inputs": ["network_requests", "console_entries"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["mixed_content"],
"description": "HTTPS flow loads insecure HTTP content."
},
{
"detector_id": "general.network.dns_failure.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "network",
"run_scope": "interaction",
"inputs": ["network_completion", "console_entries"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["dns"],
"description": "DNS resolution failure signals."
},
{
"detector_id": "general.network.tls_failure.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "network",
"run_scope": "interaction",
"inputs": ["network_completion", "console_entries"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["tls", "ssl"],
"description": "TLS handshake or certificate error signals."
},
{
"detector_id": "general.pwa.stale_sw_suspected.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "pwa",
"run_scope": "session",
"inputs": ["console_entries", "page_lifecycle"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["service_worker"],
"description": "Signals suggest stale service-worker assets."
},
{
"detector_id": "general.cache.cache_control_conflict.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "cache",
"run_scope": "interaction",
"inputs": ["network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["cache", "headers"],
"description": "Conflicting cache directives in response headers."
},
{
"detector_id": "general.performance.long_request_duration.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "performance",
"run_scope": "interaction",
"inputs": ["network_completion"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": ["threshold.long_request_duration_ms"],
"tags": ["latency"],
"description": "Request duration exceeds performance threshold."
},
{
"detector_id": "general.performance.large_js_response.v1",
"detector_version": "1.0.0",
"pack": "general",
"category": "performance",
"run_scope": "interaction",
"inputs": ["network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": ["threshold.large_js_response_bytes"],
"tags": ["javascript", "payload"],
"description": "Large JavaScript response payload."
},
{
"detector_id": "llm.streaming.sse_detected.v1",
"detector_version": "1.0.0",
"pack": "llm",
"category": "streaming",
"run_scope": "interaction",
"inputs": ["network_responses", "interactions"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["llm", "sse"],
"description": "LLM interaction uses SSE streaming."
},
{
"detector_id": "llm.identity.model_identity.v1",
"detector_version": "1.0.0",
"pack": "llm",
"category": "identity",
"run_scope": "interaction",
"inputs": ["events_raw", "network_requests", "interactions"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["llm", "model"],
"description": "Model/provider identity inferred from payloads or host fingerprint."
},
{
"detector_id": "llm.safety.safety_block_refusal.v1",
"detector_version": "1.0.0",
"pack": "llm",
"category": "safety",
"run_scope": "interaction",
"inputs": ["events_raw", "console_entries"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["llm", "safety", "refusal"],
"description": "Refusal/safety block markers in LLM interaction."
},
{
"detector_id": "llm.tooling.tool_call_schema_detected.v1",
"detector_version": "1.0.0",
"pack": "llm",
"category": "tooling",
"run_scope": "interaction",
"inputs": ["events_raw"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["llm", "tools"],
"description": "Tool/function-call schema detected in payload."
},
{
"detector_id": "llm.resilience.retry_backoff_pattern.v1",
"detector_version": "1.0.0",
"pack": "llm",
"category": "resilience",
"run_scope": "interaction",
"inputs": ["network_requests", "network_responses"],
"privacy_min": "metadata_only",
"default_enabled": true,
"threshold_keys": [],
"tags": ["llm", "retry", "backoff"],
"description": "Retry pattern with non-decreasing request intervals."
}
]
}