@highflame/policy 2.2.24 → 2.2.26
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/_schemas/ai_gateway/context.json +28 -14
- package/_schemas/ai_gateway/templates/defaults/malicious_package.cedar +59 -0
- package/_schemas/ai_gateway/templates/templates.json +14 -0
- package/_schemas/guardrails/context.json +176 -88
- package/_schemas/overwatch/context.json +146 -33
- package/dist/ai_gateway-defaults.gen.js +83 -0
- package/dist/overwatch-context.gen.d.ts +11 -1
- package/dist/overwatch-context.gen.js +20 -0
- package/dist/overwatch-defaults.gen.d.ts +1 -1
- package/dist/overwatch-defaults.gen.js +93 -0
- package/dist/overwatch-detectors.gen.js +24 -0
- package/dist/service-schemas.gen.js +13 -0
- package/package.json +1 -1
|
@@ -65,37 +65,43 @@
|
|
|
65
65
|
"key": "injection_score",
|
|
66
66
|
"type": "number",
|
|
67
67
|
"required": false,
|
|
68
|
-
"description": "Combined prompt injection confidence (0-100). MAX of all detector scores (Pulse + DeepContext). Use injection_pulse_score / injection_deep_context_score for individual detector control"
|
|
68
|
+
"description": "Combined prompt injection confidence (0-100). MAX of all detector scores (Pulse + DeepContext). Use injection_pulse_score / injection_deep_context_score for individual detector control",
|
|
69
|
+
"range": "0-100"
|
|
69
70
|
},
|
|
70
71
|
{
|
|
71
72
|
"key": "jailbreak_score",
|
|
72
73
|
"type": "number",
|
|
73
74
|
"required": false,
|
|
74
|
-
"description": "Combined jailbreak detection confidence (0-100). MAX of all detector scores (Pulse + DeepContext). Use jailbreak_pulse_score / jailbreak_deep_context_score for individual detector control"
|
|
75
|
+
"description": "Combined jailbreak detection confidence (0-100). MAX of all detector scores (Pulse + DeepContext). Use jailbreak_pulse_score / jailbreak_deep_context_score for individual detector control",
|
|
76
|
+
"range": "0-100"
|
|
75
77
|
},
|
|
76
78
|
{
|
|
77
79
|
"key": "injection_pulse_score",
|
|
78
80
|
"type": "number",
|
|
79
81
|
"required": false,
|
|
80
|
-
"description": "Highflame single-turn classifier score for prompt injection (0-100). Raw score from Pulse detector before combination with deep-context. Use for per-detector policy control"
|
|
82
|
+
"description": "Highflame single-turn classifier score for prompt injection (0-100). Raw score from Pulse detector before combination with deep-context. Use for per-detector policy control",
|
|
83
|
+
"range": "0-100"
|
|
81
84
|
},
|
|
82
85
|
{
|
|
83
86
|
"key": "injection_deep_context_score",
|
|
84
87
|
"type": "number",
|
|
85
88
|
"required": false,
|
|
86
|
-
"description": "DeepContext multi-turn analyzer score for prompt injection (0-100). Tracks injection patterns across conversation history. Generally higher confidence than single-turn"
|
|
89
|
+
"description": "DeepContext multi-turn analyzer score for prompt injection (0-100). Tracks injection patterns across conversation history. Generally higher confidence than single-turn",
|
|
90
|
+
"range": "0-100"
|
|
87
91
|
},
|
|
88
92
|
{
|
|
89
93
|
"key": "jailbreak_pulse_score",
|
|
90
94
|
"type": "number",
|
|
91
95
|
"required": false,
|
|
92
|
-
"description": "Highflame single-turn classifier score for jailbreak attempts (0-100). Raw score from Pulse detector before combination with deep-context"
|
|
96
|
+
"description": "Highflame single-turn classifier score for jailbreak attempts (0-100). Raw score from Pulse detector before combination with deep-context",
|
|
97
|
+
"range": "0-100"
|
|
93
98
|
},
|
|
94
99
|
{
|
|
95
100
|
"key": "jailbreak_deep_context_score",
|
|
96
101
|
"type": "number",
|
|
97
102
|
"required": false,
|
|
98
|
-
"description": "DeepContext multi-turn analyzer score for jailbreak attempts (0-100). Detects jailbreak escalation patterns across conversation turns"
|
|
103
|
+
"description": "DeepContext multi-turn analyzer score for jailbreak attempts (0-100). Detects jailbreak escalation patterns across conversation turns",
|
|
104
|
+
"range": "0-100"
|
|
99
105
|
},
|
|
100
106
|
{
|
|
101
107
|
"key": "injection_type",
|
|
@@ -143,7 +149,8 @@
|
|
|
143
149
|
"key": "pii_score",
|
|
144
150
|
"type": "number",
|
|
145
151
|
"required": false,
|
|
146
|
-
"description": "PII detection ML classifier confidence (0-100). Catches novel PII patterns including names, addresses, and identifiers that regex rules may miss. Typical threshold: >=80 for high-confidence blocking"
|
|
152
|
+
"description": "PII detection ML classifier confidence (0-100). Catches novel PII patterns including names, addresses, and identifiers that regex rules may miss. Typical threshold: >=80 for high-confidence blocking",
|
|
153
|
+
"range": "0-100"
|
|
147
154
|
},
|
|
148
155
|
{
|
|
149
156
|
"key": "highest_severity",
|
|
@@ -155,37 +162,43 @@
|
|
|
155
162
|
"key": "violence_score",
|
|
156
163
|
"type": "number",
|
|
157
164
|
"required": false,
|
|
158
|
-
"description": "ML-based score for violent content references (0-100). Typical threshold: >90 for critical blocks, >60 for warnings"
|
|
165
|
+
"description": "ML-based score for violent content references (0-100). Typical threshold: >90 for critical blocks, >60 for warnings",
|
|
166
|
+
"range": "0-100"
|
|
159
167
|
},
|
|
160
168
|
{
|
|
161
169
|
"key": "hate_speech_score",
|
|
162
170
|
"type": "number",
|
|
163
171
|
"required": false,
|
|
164
|
-
"description": "ML-based score for hate speech, discriminatory language, or targeted harassment (0-100). Typical threshold: >75 for blocks"
|
|
172
|
+
"description": "ML-based score for hate speech, discriminatory language, or targeted harassment (0-100). Typical threshold: >75 for blocks",
|
|
173
|
+
"range": "0-100"
|
|
165
174
|
},
|
|
166
175
|
{
|
|
167
176
|
"key": "sexual_score",
|
|
168
177
|
"type": "number",
|
|
169
178
|
"required": false,
|
|
170
|
-
"description": "ML-based score for sexual or adult content (0-100). Adjust thresholds based on your application's audience"
|
|
179
|
+
"description": "ML-based score for sexual or adult content (0-100). Adjust thresholds based on your application's audience",
|
|
180
|
+
"range": "0-100"
|
|
171
181
|
},
|
|
172
182
|
{
|
|
173
183
|
"key": "weapons_score",
|
|
174
184
|
"type": "number",
|
|
175
185
|
"required": false,
|
|
176
|
-
"description": "ML-based score for weapons references or violent imagery (0-100)"
|
|
186
|
+
"description": "ML-based score for weapons references or violent imagery (0-100)",
|
|
187
|
+
"range": "0-100"
|
|
177
188
|
},
|
|
178
189
|
{
|
|
179
190
|
"key": "crime_score",
|
|
180
191
|
"type": "number",
|
|
181
192
|
"required": false,
|
|
182
|
-
"description": "ML-based score for criminal activity discussions (0-100)"
|
|
193
|
+
"description": "ML-based score for criminal activity discussions (0-100)",
|
|
194
|
+
"range": "0-100"
|
|
183
195
|
},
|
|
184
196
|
{
|
|
185
197
|
"key": "profanity_score",
|
|
186
198
|
"type": "number",
|
|
187
199
|
"required": false,
|
|
188
|
-
"description": "ML-based score for profanity and vulgar language (0-100)"
|
|
200
|
+
"description": "ML-based score for profanity and vulgar language (0-100)",
|
|
201
|
+
"range": "0-100"
|
|
189
202
|
},
|
|
190
203
|
{
|
|
191
204
|
"key": "content_topics",
|
|
@@ -197,7 +210,8 @@
|
|
|
197
210
|
"key": "topic_confidence",
|
|
198
211
|
"type": "number",
|
|
199
212
|
"required": false,
|
|
200
|
-
"description": "Confidence score from topic classifier (0-100). Use with content_topics to tune sensitivity — higher thresholds reduce false positives"
|
|
213
|
+
"description": "Confidence score from topic classifier (0-100). Use with content_topics to tune sensitivity — higher thresholds reduce false positives",
|
|
214
|
+
"range": "0-100"
|
|
201
215
|
},
|
|
202
216
|
{
|
|
203
217
|
"key": "invisible_chars_detected",
|
|
@@ -209,7 +223,8 @@
|
|
|
209
223
|
"key": "invisible_chars_score",
|
|
210
224
|
"type": "number",
|
|
211
225
|
"required": false,
|
|
212
|
-
"description": "Density score for invisible characters in the content (0-100). Higher scores indicate more invisible characters, suggesting evasion attempts"
|
|
226
|
+
"description": "Density score for invisible characters in the content (0-100). Higher scores indicate more invisible characters, suggesting evasion attempts",
|
|
227
|
+
"range": "0-100"
|
|
213
228
|
},
|
|
214
229
|
{
|
|
215
230
|
"key": "command_injection_detected",
|
|
@@ -227,7 +242,8 @@
|
|
|
227
242
|
"key": "command_injection_score",
|
|
228
243
|
"type": "number",
|
|
229
244
|
"required": false,
|
|
230
|
-
"description": "Confidence score for command injection detection (0-100). Higher scores indicate stronger pattern matches"
|
|
245
|
+
"description": "Confidence score for command injection detection (0-100). Higher scores indicate stronger pattern matches",
|
|
246
|
+
"range": "0-100"
|
|
231
247
|
},
|
|
232
248
|
{
|
|
233
249
|
"key": "path_traversal_detected",
|
|
@@ -263,7 +279,8 @@
|
|
|
263
279
|
"key": "sql_injection_score",
|
|
264
280
|
"type": "number",
|
|
265
281
|
"required": false,
|
|
266
|
-
"description": "Confidence score for SQL injection detection (0-100). Typical threshold: >=75 for blocks"
|
|
282
|
+
"description": "Confidence score for SQL injection detection (0-100). Typical threshold: >=75 for blocks",
|
|
283
|
+
"range": "0-100"
|
|
267
284
|
},
|
|
268
285
|
{
|
|
269
286
|
"key": "cross_origin_detected",
|
|
@@ -281,7 +298,8 @@
|
|
|
281
298
|
"key": "cross_origin_score",
|
|
282
299
|
"type": "number",
|
|
283
300
|
"required": false,
|
|
284
|
-
"description": "Risk score for cross-origin escalation (0-100). Higher scores indicate more suspicious cross-boundary activity"
|
|
301
|
+
"description": "Risk score for cross-origin escalation (0-100). Higher scores indicate more suspicious cross-boundary activity",
|
|
302
|
+
"range": "0-100"
|
|
285
303
|
},
|
|
286
304
|
{
|
|
287
305
|
"key": "package_install_detected",
|
|
@@ -305,7 +323,8 @@
|
|
|
305
323
|
"key": "malicious_package_score",
|
|
306
324
|
"type": "number",
|
|
307
325
|
"required": false,
|
|
308
|
-
"description": "100 when a malicious package was detected, 0 otherwise"
|
|
326
|
+
"description": "100 when a malicious package was detected, 0 otherwise",
|
|
327
|
+
"range": "0-100"
|
|
309
328
|
},
|
|
310
329
|
{
|
|
311
330
|
"key": "malicious_packages",
|
|
@@ -335,7 +354,8 @@
|
|
|
335
354
|
"key": "package_risk_score",
|
|
336
355
|
"type": "number",
|
|
337
356
|
"required": false,
|
|
338
|
-
"description": "Graduated supply-chain risk score (0-100). 100 when any malicious package is found; proportional to advisory_count for advisory-only packages; 0 when all packages are clean."
|
|
357
|
+
"description": "Graduated supply-chain risk score (0-100). 100 when any malicious package is found; proportional to advisory_count for advisory-only packages; 0 when all packages are clean.",
|
|
358
|
+
"range": "0-100"
|
|
339
359
|
},
|
|
340
360
|
{
|
|
341
361
|
"key": "package_check_status",
|
|
@@ -365,7 +385,8 @@
|
|
|
365
385
|
"key": "encoded_score",
|
|
366
386
|
"type": "number",
|
|
367
387
|
"required": false,
|
|
368
|
-
"description": "Risk score for encoded injection attempts (0-100). Considers encoding density and decoded content patterns"
|
|
388
|
+
"description": "Risk score for encoded injection attempts (0-100). Considers encoding density and decoded content patterns",
|
|
389
|
+
"range": "0-100"
|
|
369
390
|
},
|
|
370
391
|
{
|
|
371
392
|
"key": "detected_language",
|
|
@@ -383,7 +404,8 @@
|
|
|
383
404
|
"key": "language_confidence",
|
|
384
405
|
"type": "number",
|
|
385
406
|
"required": false,
|
|
386
|
-
"description": "Confidence score for language detection (0-100). Use with detected_language to tune sensitivity"
|
|
407
|
+
"description": "Confidence score for language detection (0-100). Use with detected_language to tune sensitivity",
|
|
408
|
+
"range": "0-100"
|
|
387
409
|
},
|
|
388
410
|
{
|
|
389
411
|
"key": "detected_script",
|
|
@@ -401,25 +423,29 @@
|
|
|
401
423
|
"key": "script_confidence",
|
|
402
424
|
"type": "number",
|
|
403
425
|
"required": false,
|
|
404
|
-
"description": "Confidence score for script detection (0-100)"
|
|
426
|
+
"description": "Confidence score for script detection (0-100)",
|
|
427
|
+
"range": "0-100"
|
|
405
428
|
},
|
|
406
429
|
{
|
|
407
430
|
"key": "hallucination_score",
|
|
408
431
|
"type": "number",
|
|
409
432
|
"required": false,
|
|
410
|
-
"description": "ML-based score for hallucinated or fabricated content (0-100). Higher scores indicate higher likelihood of non-factual claims"
|
|
433
|
+
"description": "ML-based score for hallucinated or fabricated content (0-100). Higher scores indicate higher likelihood of non-factual claims",
|
|
434
|
+
"range": "0-100"
|
|
411
435
|
},
|
|
412
436
|
{
|
|
413
437
|
"key": "factuality_score",
|
|
414
438
|
"type": "number",
|
|
415
439
|
"required": false,
|
|
416
|
-
"description": "ML-based factuality assessment score (0-100). Higher scores indicate more factually grounded content"
|
|
440
|
+
"description": "ML-based factuality assessment score (0-100). Higher scores indicate more factually grounded content",
|
|
441
|
+
"range": "0-100"
|
|
417
442
|
},
|
|
418
443
|
{
|
|
419
444
|
"key": "sentiment_score",
|
|
420
445
|
"type": "number",
|
|
421
446
|
"required": false,
|
|
422
|
-
"description": "Sentiment analysis score. Use to detect overly negative or manipulative tone in prompts or responses"
|
|
447
|
+
"description": "Sentiment analysis score. Use to detect overly negative or manipulative tone in prompts or responses",
|
|
448
|
+
"range": "0-100"
|
|
423
449
|
},
|
|
424
450
|
{
|
|
425
451
|
"key": "contains_code",
|
|
@@ -437,7 +463,8 @@
|
|
|
437
463
|
"key": "code_ratio",
|
|
438
464
|
"type": "number",
|
|
439
465
|
"required": false,
|
|
440
|
-
"description": "Percentage of content that consists of code (0-100). High values may indicate code dumps or automated content"
|
|
466
|
+
"description": "Percentage of content that consists of code (0-100). High values may indicate code dumps or automated content",
|
|
467
|
+
"range": "0-100"
|
|
441
468
|
},
|
|
442
469
|
{
|
|
443
470
|
"key": "keyword_matched",
|
|
@@ -473,7 +500,8 @@
|
|
|
473
500
|
"key": "content_safety_score",
|
|
474
501
|
"type": "number",
|
|
475
502
|
"required": false,
|
|
476
|
-
"description": "Aggregate content safety score (0-100). Combines multiple safety signals into a single risk indicator"
|
|
503
|
+
"description": "Aggregate content safety score (0-100). Combines multiple safety signals into a single risk indicator",
|
|
504
|
+
"range": "0-100"
|
|
477
505
|
},
|
|
478
506
|
{
|
|
479
507
|
"key": "content_safety_blocked",
|
|
@@ -497,7 +525,8 @@
|
|
|
497
525
|
"key": "rpm_remaining_pct",
|
|
498
526
|
"type": "number",
|
|
499
527
|
"required": false,
|
|
500
|
-
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
528
|
+
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
529
|
+
"range": "0-100"
|
|
501
530
|
},
|
|
502
531
|
{
|
|
503
532
|
"key": "rpm_exceeded",
|
|
@@ -509,7 +538,8 @@
|
|
|
509
538
|
"key": "tpm_remaining_pct",
|
|
510
539
|
"type": "number",
|
|
511
540
|
"required": false,
|
|
512
|
-
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
541
|
+
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
542
|
+
"range": "0-100"
|
|
513
543
|
},
|
|
514
544
|
{
|
|
515
545
|
"key": "tpm_exceeded",
|
|
@@ -563,31 +593,36 @@
|
|
|
563
593
|
"key": "session_max_injection_score",
|
|
564
594
|
"type": "number",
|
|
565
595
|
"required": false,
|
|
566
|
-
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions"
|
|
596
|
+
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions",
|
|
597
|
+
"range": "0-100"
|
|
567
598
|
},
|
|
568
599
|
{
|
|
569
600
|
"key": "session_max_jailbreak_score",
|
|
570
601
|
"type": "number",
|
|
571
602
|
"required": false,
|
|
572
|
-
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)"
|
|
603
|
+
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)",
|
|
604
|
+
"range": "0-100"
|
|
573
605
|
},
|
|
574
606
|
{
|
|
575
607
|
"key": "session_max_command_injection_score",
|
|
576
608
|
"type": "number",
|
|
577
609
|
"required": false,
|
|
578
|
-
"description": "Highest command injection score seen in any turn of the session (0-100)"
|
|
610
|
+
"description": "Highest command injection score seen in any turn of the session (0-100)",
|
|
611
|
+
"range": "0-100"
|
|
579
612
|
},
|
|
580
613
|
{
|
|
581
614
|
"key": "session_max_pii_score",
|
|
582
615
|
"type": "number",
|
|
583
616
|
"required": false,
|
|
584
|
-
"description": "Highest PII risk score seen in any turn of the session (0-100)"
|
|
617
|
+
"description": "Highest PII risk score seen in any turn of the session (0-100)",
|
|
618
|
+
"range": "0-100"
|
|
585
619
|
},
|
|
586
620
|
{
|
|
587
621
|
"key": "session_max_secret_score",
|
|
588
622
|
"type": "number",
|
|
589
623
|
"required": false,
|
|
590
|
-
"description": "Highest secret detection score seen in any turn of the session (0-100)"
|
|
624
|
+
"description": "Highest secret detection score seen in any turn of the session (0-100)",
|
|
625
|
+
"range": "0-100"
|
|
591
626
|
},
|
|
592
627
|
{
|
|
593
628
|
"key": "session_cumulative_risk_score",
|
|
@@ -689,7 +724,8 @@
|
|
|
689
724
|
"key": "tool_risk_score",
|
|
690
725
|
"type": "number",
|
|
691
726
|
"required": false,
|
|
692
|
-
"description": "Computed risk score for this tool call (0-100). Considers tool sensitivity, argument patterns, and MCP verification status. Typical threshold: >85 for dangerous tools"
|
|
727
|
+
"description": "Computed risk score for this tool call (0-100). Considers tool sensitivity, argument patterns, and MCP verification status. Typical threshold: >85 for dangerous tools",
|
|
728
|
+
"range": "0-100"
|
|
693
729
|
},
|
|
694
730
|
{
|
|
695
731
|
"key": "tool_is_sensitive",
|
|
@@ -755,7 +791,8 @@
|
|
|
755
791
|
"key": "sequence_risk",
|
|
756
792
|
"type": "number",
|
|
757
793
|
"required": false,
|
|
758
|
-
"description": "Risk score from action sequence analysis (0-100). Analyzes history of tool calls to detect attack patterns. Typical threshold: >80 for blocks"
|
|
794
|
+
"description": "Risk score from action sequence analysis (0-100). Analyzes history of tool calls to detect attack patterns. Typical threshold: >80 for blocks",
|
|
795
|
+
"range": "0-100"
|
|
759
796
|
},
|
|
760
797
|
{
|
|
761
798
|
"key": "loop_detected",
|
|
@@ -779,7 +816,8 @@
|
|
|
779
816
|
"key": "budget_remaining_pct",
|
|
780
817
|
"type": "number",
|
|
781
818
|
"required": false,
|
|
782
|
-
"description": "Remaining token budget as percentage (0-100). Use this to warn or block when budget is low. Requires session with token budget configuration"
|
|
819
|
+
"description": "Remaining token budget as percentage (0-100). Use this to warn or block when budget is low. Requires session with token budget configuration",
|
|
820
|
+
"range": "0-100"
|
|
783
821
|
},
|
|
784
822
|
{
|
|
785
823
|
"key": "budget_exceeded",
|
|
@@ -791,7 +829,8 @@
|
|
|
791
829
|
"key": "rpm_remaining_pct",
|
|
792
830
|
"type": "number",
|
|
793
831
|
"required": false,
|
|
794
|
-
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
832
|
+
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
833
|
+
"range": "0-100"
|
|
795
834
|
},
|
|
796
835
|
{
|
|
797
836
|
"key": "rpm_exceeded",
|
|
@@ -803,7 +842,8 @@
|
|
|
803
842
|
"key": "tpm_remaining_pct",
|
|
804
843
|
"type": "number",
|
|
805
844
|
"required": false,
|
|
806
|
-
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
845
|
+
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
846
|
+
"range": "0-100"
|
|
807
847
|
},
|
|
808
848
|
{
|
|
809
849
|
"key": "tpm_exceeded",
|
|
@@ -821,7 +861,8 @@
|
|
|
821
861
|
"key": "topic_confidence",
|
|
822
862
|
"type": "number",
|
|
823
863
|
"required": false,
|
|
824
|
-
"description": "Confidence score from topic classifier for tool content (0-100)"
|
|
864
|
+
"description": "Confidence score from topic classifier for tool content (0-100)",
|
|
865
|
+
"range": "0-100"
|
|
825
866
|
},
|
|
826
867
|
{
|
|
827
868
|
"key": "secrets_detected",
|
|
@@ -863,25 +904,29 @@
|
|
|
863
904
|
"key": "pii_score",
|
|
864
905
|
"type": "number",
|
|
865
906
|
"required": false,
|
|
866
|
-
"description": "PII detection ML classifier confidence for tool content (0-100). Catches novel PII patterns that escape regex detection"
|
|
907
|
+
"description": "PII detection ML classifier confidence for tool content (0-100). Catches novel PII patterns that escape regex detection",
|
|
908
|
+
"range": "0-100"
|
|
867
909
|
},
|
|
868
910
|
{
|
|
869
911
|
"key": "injection_score",
|
|
870
912
|
"type": "number",
|
|
871
913
|
"required": false,
|
|
872
|
-
"description": "Combined prompt injection confidence in tool arguments (0-100). MAX of all detector scores (Pulse + DeepContext). Use injection_pulse_score / injection_deep_context_score for individual detector control"
|
|
914
|
+
"description": "Combined prompt injection confidence in tool arguments (0-100). MAX of all detector scores (Pulse + DeepContext). Use injection_pulse_score / injection_deep_context_score for individual detector control",
|
|
915
|
+
"range": "0-100"
|
|
873
916
|
},
|
|
874
917
|
{
|
|
875
918
|
"key": "injection_pulse_score",
|
|
876
919
|
"type": "number",
|
|
877
920
|
"required": false,
|
|
878
|
-
"description": "Highflame single-turn classifier score for prompt injection in tool arguments (0-100). Raw score from Pulse detector before combination with deep-context"
|
|
921
|
+
"description": "Highflame single-turn classifier score for prompt injection in tool arguments (0-100). Raw score from Pulse detector before combination with deep-context",
|
|
922
|
+
"range": "0-100"
|
|
879
923
|
},
|
|
880
924
|
{
|
|
881
925
|
"key": "injection_deep_context_score",
|
|
882
926
|
"type": "number",
|
|
883
927
|
"required": false,
|
|
884
|
-
"description": "DeepContext multi-turn analyzer score for prompt injection in tool arguments (0-100). Tracks injection patterns across tool call history"
|
|
928
|
+
"description": "DeepContext multi-turn analyzer score for prompt injection in tool arguments (0-100). Tracks injection patterns across tool call history",
|
|
929
|
+
"range": "0-100"
|
|
885
930
|
},
|
|
886
931
|
{
|
|
887
932
|
"key": "command_injection_detected",
|
|
@@ -899,7 +944,8 @@
|
|
|
899
944
|
"key": "command_injection_score",
|
|
900
945
|
"type": "number",
|
|
901
946
|
"required": false,
|
|
902
|
-
"description": "Confidence score for command injection in tool arguments (0-100)"
|
|
947
|
+
"description": "Confidence score for command injection in tool arguments (0-100)",
|
|
948
|
+
"range": "0-100"
|
|
903
949
|
},
|
|
904
950
|
{
|
|
905
951
|
"key": "path_traversal_detected",
|
|
@@ -935,7 +981,8 @@
|
|
|
935
981
|
"key": "sql_injection_score",
|
|
936
982
|
"type": "number",
|
|
937
983
|
"required": false,
|
|
938
|
-
"description": "Confidence score for SQL injection in tool arguments (0-100)"
|
|
984
|
+
"description": "Confidence score for SQL injection in tool arguments (0-100)",
|
|
985
|
+
"range": "0-100"
|
|
939
986
|
},
|
|
940
987
|
{
|
|
941
988
|
"key": "tool_poisoning_detected",
|
|
@@ -947,7 +994,8 @@
|
|
|
947
994
|
"key": "tool_poisoning_score",
|
|
948
995
|
"type": "number",
|
|
949
996
|
"required": false,
|
|
950
|
-
"description": "Confidence score for tool poisoning detection (0-100). Typical threshold: >=70 for blocks"
|
|
997
|
+
"description": "Confidence score for tool poisoning detection (0-100). Typical threshold: >=70 for blocks",
|
|
998
|
+
"range": "0-100"
|
|
951
999
|
},
|
|
952
1000
|
{
|
|
953
1001
|
"key": "tool_poisoning_type",
|
|
@@ -965,7 +1013,8 @@
|
|
|
965
1013
|
"key": "rug_pull_score",
|
|
966
1014
|
"type": "number",
|
|
967
1015
|
"required": false,
|
|
968
|
-
"description": "Confidence score for rug pull detection based on behavioral drift analysis (0-100)"
|
|
1016
|
+
"description": "Confidence score for rug pull detection based on behavioral drift analysis (0-100)",
|
|
1017
|
+
"range": "0-100"
|
|
969
1018
|
},
|
|
970
1019
|
{
|
|
971
1020
|
"key": "mcp_config_risk",
|
|
@@ -983,7 +1032,8 @@
|
|
|
983
1032
|
"key": "mcp_risk_score",
|
|
984
1033
|
"type": "number",
|
|
985
1034
|
"required": false,
|
|
986
|
-
"description": "Risk score for MCP configuration issues (0-100). Typical threshold: >=70 for blocks"
|
|
1035
|
+
"description": "Risk score for MCP configuration issues (0-100). Typical threshold: >=70 for blocks",
|
|
1036
|
+
"range": "0-100"
|
|
987
1037
|
},
|
|
988
1038
|
{
|
|
989
1039
|
"key": "tool_operation_classes",
|
|
@@ -1007,7 +1057,8 @@
|
|
|
1007
1057
|
"key": "cross_origin_score",
|
|
1008
1058
|
"type": "number",
|
|
1009
1059
|
"required": false,
|
|
1010
|
-
"description": "Risk score for cross-origin escalation in tool calls (0-100)"
|
|
1060
|
+
"description": "Risk score for cross-origin escalation in tool calls (0-100)",
|
|
1061
|
+
"range": "0-100"
|
|
1011
1062
|
},
|
|
1012
1063
|
{
|
|
1013
1064
|
"key": "package_install_detected",
|
|
@@ -1031,7 +1082,8 @@
|
|
|
1031
1082
|
"key": "malicious_package_score",
|
|
1032
1083
|
"type": "number",
|
|
1033
1084
|
"required": false,
|
|
1034
|
-
"description": "100 when a malicious package was detected, 0 otherwise"
|
|
1085
|
+
"description": "100 when a malicious package was detected, 0 otherwise",
|
|
1086
|
+
"range": "0-100"
|
|
1035
1087
|
},
|
|
1036
1088
|
{
|
|
1037
1089
|
"key": "malicious_packages",
|
|
@@ -1061,7 +1113,8 @@
|
|
|
1061
1113
|
"key": "package_risk_score",
|
|
1062
1114
|
"type": "number",
|
|
1063
1115
|
"required": false,
|
|
1064
|
-
"description": "Graduated supply-chain risk score (0-100). 100 when any malicious package is found; proportional to advisory_count for advisory-only packages; 0 when all packages are clean."
|
|
1116
|
+
"description": "Graduated supply-chain risk score (0-100). 100 when any malicious package is found; proportional to advisory_count for advisory-only packages; 0 when all packages are clean.",
|
|
1117
|
+
"range": "0-100"
|
|
1065
1118
|
},
|
|
1066
1119
|
{
|
|
1067
1120
|
"key": "package_check_status",
|
|
@@ -1091,7 +1144,8 @@
|
|
|
1091
1144
|
"key": "encoded_score",
|
|
1092
1145
|
"type": "number",
|
|
1093
1146
|
"required": false,
|
|
1094
|
-
"description": "Risk score for encoded injection in tool arguments (0-100)"
|
|
1147
|
+
"description": "Risk score for encoded injection in tool arguments (0-100)",
|
|
1148
|
+
"range": "0-100"
|
|
1095
1149
|
},
|
|
1096
1150
|
{
|
|
1097
1151
|
"key": "path",
|
|
@@ -1109,13 +1163,15 @@
|
|
|
1109
1163
|
"key": "invisible_chars_score",
|
|
1110
1164
|
"type": "number",
|
|
1111
1165
|
"required": false,
|
|
1112
|
-
"description": "Invisible character attack severity score in tool arguments (0-100)"
|
|
1166
|
+
"description": "Invisible character attack severity score in tool arguments (0-100)",
|
|
1167
|
+
"range": "0-100"
|
|
1113
1168
|
},
|
|
1114
1169
|
{
|
|
1115
1170
|
"key": "indirect_injection_score",
|
|
1116
1171
|
"type": "number",
|
|
1117
1172
|
"required": false,
|
|
1118
|
-
"description": "Indirect prompt injection risk score (0-100) — injection via tool outputs, retrieved documents, or external content. Use >=70 for general blocking, >=50 for sensitive tools"
|
|
1173
|
+
"description": "Indirect prompt injection risk score (0-100) — injection via tool outputs, retrieved documents, or external content. Use >=70 for general blocking, >=50 for sensitive tools",
|
|
1174
|
+
"range": "0-100"
|
|
1119
1175
|
},
|
|
1120
1176
|
{
|
|
1121
1177
|
"key": "indirect_injection_type",
|
|
@@ -1145,7 +1201,8 @@
|
|
|
1145
1201
|
"key": "rpm_remaining_pct",
|
|
1146
1202
|
"type": "number",
|
|
1147
1203
|
"required": false,
|
|
1148
|
-
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1204
|
+
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1205
|
+
"range": "0-100"
|
|
1149
1206
|
},
|
|
1150
1207
|
{
|
|
1151
1208
|
"key": "rpm_exceeded",
|
|
@@ -1157,7 +1214,8 @@
|
|
|
1157
1214
|
"key": "tpm_remaining_pct",
|
|
1158
1215
|
"type": "number",
|
|
1159
1216
|
"required": false,
|
|
1160
|
-
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1217
|
+
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1218
|
+
"range": "0-100"
|
|
1161
1219
|
},
|
|
1162
1220
|
{
|
|
1163
1221
|
"key": "tpm_exceeded",
|
|
@@ -1211,31 +1269,36 @@
|
|
|
1211
1269
|
"key": "session_max_injection_score",
|
|
1212
1270
|
"type": "number",
|
|
1213
1271
|
"required": false,
|
|
1214
|
-
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions"
|
|
1272
|
+
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions",
|
|
1273
|
+
"range": "0-100"
|
|
1215
1274
|
},
|
|
1216
1275
|
{
|
|
1217
1276
|
"key": "session_max_jailbreak_score",
|
|
1218
1277
|
"type": "number",
|
|
1219
1278
|
"required": false,
|
|
1220
|
-
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)"
|
|
1279
|
+
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)",
|
|
1280
|
+
"range": "0-100"
|
|
1221
1281
|
},
|
|
1222
1282
|
{
|
|
1223
1283
|
"key": "session_max_command_injection_score",
|
|
1224
1284
|
"type": "number",
|
|
1225
1285
|
"required": false,
|
|
1226
|
-
"description": "Highest command injection score seen in any turn of the session (0-100)"
|
|
1286
|
+
"description": "Highest command injection score seen in any turn of the session (0-100)",
|
|
1287
|
+
"range": "0-100"
|
|
1227
1288
|
},
|
|
1228
1289
|
{
|
|
1229
1290
|
"key": "session_max_pii_score",
|
|
1230
1291
|
"type": "number",
|
|
1231
1292
|
"required": false,
|
|
1232
|
-
"description": "Highest PII risk score seen in any turn of the session (0-100)"
|
|
1293
|
+
"description": "Highest PII risk score seen in any turn of the session (0-100)",
|
|
1294
|
+
"range": "0-100"
|
|
1233
1295
|
},
|
|
1234
1296
|
{
|
|
1235
1297
|
"key": "session_max_secret_score",
|
|
1236
1298
|
"type": "number",
|
|
1237
1299
|
"required": false,
|
|
1238
|
-
"description": "Highest secret detection score seen in any turn of the session (0-100)"
|
|
1300
|
+
"description": "Highest secret detection score seen in any turn of the session (0-100)",
|
|
1301
|
+
"range": "0-100"
|
|
1239
1302
|
},
|
|
1240
1303
|
{
|
|
1241
1304
|
"key": "session_cumulative_risk_score",
|
|
@@ -1385,7 +1448,8 @@
|
|
|
1385
1448
|
"key": "rpm_remaining_pct",
|
|
1386
1449
|
"type": "number",
|
|
1387
1450
|
"required": false,
|
|
1388
|
-
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1451
|
+
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1452
|
+
"range": "0-100"
|
|
1389
1453
|
},
|
|
1390
1454
|
{
|
|
1391
1455
|
"key": "rpm_exceeded",
|
|
@@ -1397,7 +1461,8 @@
|
|
|
1397
1461
|
"key": "tpm_remaining_pct",
|
|
1398
1462
|
"type": "number",
|
|
1399
1463
|
"required": false,
|
|
1400
|
-
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1464
|
+
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1465
|
+
"range": "0-100"
|
|
1401
1466
|
},
|
|
1402
1467
|
{
|
|
1403
1468
|
"key": "tpm_exceeded",
|
|
@@ -1451,31 +1516,36 @@
|
|
|
1451
1516
|
"key": "session_max_injection_score",
|
|
1452
1517
|
"type": "number",
|
|
1453
1518
|
"required": false,
|
|
1454
|
-
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions"
|
|
1519
|
+
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions",
|
|
1520
|
+
"range": "0-100"
|
|
1455
1521
|
},
|
|
1456
1522
|
{
|
|
1457
1523
|
"key": "session_max_jailbreak_score",
|
|
1458
1524
|
"type": "number",
|
|
1459
1525
|
"required": false,
|
|
1460
|
-
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)"
|
|
1526
|
+
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)",
|
|
1527
|
+
"range": "0-100"
|
|
1461
1528
|
},
|
|
1462
1529
|
{
|
|
1463
1530
|
"key": "session_max_command_injection_score",
|
|
1464
1531
|
"type": "number",
|
|
1465
1532
|
"required": false,
|
|
1466
|
-
"description": "Highest command injection score seen in any turn of the session (0-100)"
|
|
1533
|
+
"description": "Highest command injection score seen in any turn of the session (0-100)",
|
|
1534
|
+
"range": "0-100"
|
|
1467
1535
|
},
|
|
1468
1536
|
{
|
|
1469
1537
|
"key": "session_max_pii_score",
|
|
1470
1538
|
"type": "number",
|
|
1471
1539
|
"required": false,
|
|
1472
|
-
"description": "Highest PII risk score seen in any turn of the session (0-100)"
|
|
1540
|
+
"description": "Highest PII risk score seen in any turn of the session (0-100)",
|
|
1541
|
+
"range": "0-100"
|
|
1473
1542
|
},
|
|
1474
1543
|
{
|
|
1475
1544
|
"key": "session_max_secret_score",
|
|
1476
1545
|
"type": "number",
|
|
1477
1546
|
"required": false,
|
|
1478
|
-
"description": "Highest secret detection score seen in any turn of the session (0-100)"
|
|
1547
|
+
"description": "Highest secret detection score seen in any turn of the session (0-100)",
|
|
1548
|
+
"range": "0-100"
|
|
1479
1549
|
},
|
|
1480
1550
|
{
|
|
1481
1551
|
"key": "session_cumulative_risk_score",
|
|
@@ -1583,7 +1653,8 @@
|
|
|
1583
1653
|
"key": "invisible_chars_score",
|
|
1584
1654
|
"type": "number",
|
|
1585
1655
|
"required": false,
|
|
1586
|
-
"description": "Invisible character attack severity score (0-100) in write content"
|
|
1656
|
+
"description": "Invisible character attack severity score (0-100) in write content",
|
|
1657
|
+
"range": "0-100"
|
|
1587
1658
|
},
|
|
1588
1659
|
{
|
|
1589
1660
|
"key": "secrets_detected",
|
|
@@ -1637,7 +1708,8 @@
|
|
|
1637
1708
|
"key": "rpm_remaining_pct",
|
|
1638
1709
|
"type": "number",
|
|
1639
1710
|
"required": false,
|
|
1640
|
-
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1711
|
+
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1712
|
+
"range": "0-100"
|
|
1641
1713
|
},
|
|
1642
1714
|
{
|
|
1643
1715
|
"key": "rpm_exceeded",
|
|
@@ -1649,7 +1721,8 @@
|
|
|
1649
1721
|
"key": "tpm_remaining_pct",
|
|
1650
1722
|
"type": "number",
|
|
1651
1723
|
"required": false,
|
|
1652
|
-
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1724
|
+
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1725
|
+
"range": "0-100"
|
|
1653
1726
|
},
|
|
1654
1727
|
{
|
|
1655
1728
|
"key": "tpm_exceeded",
|
|
@@ -1703,31 +1776,36 @@
|
|
|
1703
1776
|
"key": "session_max_injection_score",
|
|
1704
1777
|
"type": "number",
|
|
1705
1778
|
"required": false,
|
|
1706
|
-
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions"
|
|
1779
|
+
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions",
|
|
1780
|
+
"range": "0-100"
|
|
1707
1781
|
},
|
|
1708
1782
|
{
|
|
1709
1783
|
"key": "session_max_jailbreak_score",
|
|
1710
1784
|
"type": "number",
|
|
1711
1785
|
"required": false,
|
|
1712
|
-
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)"
|
|
1786
|
+
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)",
|
|
1787
|
+
"range": "0-100"
|
|
1713
1788
|
},
|
|
1714
1789
|
{
|
|
1715
1790
|
"key": "session_max_command_injection_score",
|
|
1716
1791
|
"type": "number",
|
|
1717
1792
|
"required": false,
|
|
1718
|
-
"description": "Highest command injection score seen in any turn of the session (0-100)"
|
|
1793
|
+
"description": "Highest command injection score seen in any turn of the session (0-100)",
|
|
1794
|
+
"range": "0-100"
|
|
1719
1795
|
},
|
|
1720
1796
|
{
|
|
1721
1797
|
"key": "session_max_pii_score",
|
|
1722
1798
|
"type": "number",
|
|
1723
1799
|
"required": false,
|
|
1724
|
-
"description": "Highest PII risk score seen in any turn of the session (0-100)"
|
|
1800
|
+
"description": "Highest PII risk score seen in any turn of the session (0-100)",
|
|
1801
|
+
"range": "0-100"
|
|
1725
1802
|
},
|
|
1726
1803
|
{
|
|
1727
1804
|
"key": "session_max_secret_score",
|
|
1728
1805
|
"type": "number",
|
|
1729
1806
|
"required": false,
|
|
1730
|
-
"description": "Highest secret detection score seen in any turn of the session (0-100)"
|
|
1807
|
+
"description": "Highest secret detection score seen in any turn of the session (0-100)",
|
|
1808
|
+
"range": "0-100"
|
|
1731
1809
|
},
|
|
1732
1810
|
{
|
|
1733
1811
|
"key": "session_cumulative_risk_score",
|
|
@@ -1841,7 +1919,8 @@
|
|
|
1841
1919
|
"key": "tool_poisoning_score",
|
|
1842
1920
|
"type": "number",
|
|
1843
1921
|
"required": false,
|
|
1844
|
-
"description": "Confidence score for tool poisoning in MCP server tools (0-100)"
|
|
1922
|
+
"description": "Confidence score for tool poisoning in MCP server tools (0-100)",
|
|
1923
|
+
"range": "0-100"
|
|
1845
1924
|
},
|
|
1846
1925
|
{
|
|
1847
1926
|
"key": "tool_poisoning_type",
|
|
@@ -1865,7 +1944,8 @@
|
|
|
1865
1944
|
"key": "mcp_risk_score",
|
|
1866
1945
|
"type": "number",
|
|
1867
1946
|
"required": false,
|
|
1868
|
-
"description": "Risk score for MCP configuration issues (0-100)"
|
|
1947
|
+
"description": "Risk score for MCP configuration issues (0-100)",
|
|
1948
|
+
"range": "0-100"
|
|
1869
1949
|
},
|
|
1870
1950
|
{
|
|
1871
1951
|
"key": "cross_origin_detected",
|
|
@@ -1883,13 +1963,15 @@
|
|
|
1883
1963
|
"key": "cross_origin_score",
|
|
1884
1964
|
"type": "number",
|
|
1885
1965
|
"required": false,
|
|
1886
|
-
"description": "Risk score for cross-origin escalation in server connection (0-100)"
|
|
1966
|
+
"description": "Risk score for cross-origin escalation in server connection (0-100)",
|
|
1967
|
+
"range": "0-100"
|
|
1887
1968
|
},
|
|
1888
1969
|
{
|
|
1889
1970
|
"key": "rpm_remaining_pct",
|
|
1890
1971
|
"type": "number",
|
|
1891
1972
|
"required": false,
|
|
1892
|
-
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1973
|
+
"description": "Remaining RPM (requests per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1974
|
+
"range": "0-100"
|
|
1893
1975
|
},
|
|
1894
1976
|
{
|
|
1895
1977
|
"key": "rpm_exceeded",
|
|
@@ -1901,7 +1983,8 @@
|
|
|
1901
1983
|
"key": "tpm_remaining_pct",
|
|
1902
1984
|
"type": "number",
|
|
1903
1985
|
"required": false,
|
|
1904
|
-
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)"
|
|
1986
|
+
"description": "Remaining TPM (tokens per minute) as percentage (0-100). Gateway-metered, Shield-decided (ADR 0014)",
|
|
1987
|
+
"range": "0-100"
|
|
1905
1988
|
},
|
|
1906
1989
|
{
|
|
1907
1990
|
"key": "tpm_exceeded",
|
|
@@ -1955,31 +2038,36 @@
|
|
|
1955
2038
|
"key": "session_max_injection_score",
|
|
1956
2039
|
"type": "number",
|
|
1957
2040
|
"required": false,
|
|
1958
|
-
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions"
|
|
2041
|
+
"description": "Highest prompt injection score seen in any turn of the session (0-100). Use for tiered responses: >75 hard block, >50 restrict permissions",
|
|
2042
|
+
"range": "0-100"
|
|
1959
2043
|
},
|
|
1960
2044
|
{
|
|
1961
2045
|
"key": "session_max_jailbreak_score",
|
|
1962
2046
|
"type": "number",
|
|
1963
2047
|
"required": false,
|
|
1964
|
-
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)"
|
|
2048
|
+
"description": "Highest jailbreak detection score seen in any turn of the session (0-100)",
|
|
2049
|
+
"range": "0-100"
|
|
1965
2050
|
},
|
|
1966
2051
|
{
|
|
1967
2052
|
"key": "session_max_command_injection_score",
|
|
1968
2053
|
"type": "number",
|
|
1969
2054
|
"required": false,
|
|
1970
|
-
"description": "Highest command injection score seen in any turn of the session (0-100)"
|
|
2055
|
+
"description": "Highest command injection score seen in any turn of the session (0-100)",
|
|
2056
|
+
"range": "0-100"
|
|
1971
2057
|
},
|
|
1972
2058
|
{
|
|
1973
2059
|
"key": "session_max_pii_score",
|
|
1974
2060
|
"type": "number",
|
|
1975
2061
|
"required": false,
|
|
1976
|
-
"description": "Highest PII risk score seen in any turn of the session (0-100)"
|
|
2062
|
+
"description": "Highest PII risk score seen in any turn of the session (0-100)",
|
|
2063
|
+
"range": "0-100"
|
|
1977
2064
|
},
|
|
1978
2065
|
{
|
|
1979
2066
|
"key": "session_max_secret_score",
|
|
1980
2067
|
"type": "number",
|
|
1981
2068
|
"required": false,
|
|
1982
|
-
"description": "Highest secret detection score seen in any turn of the session (0-100)"
|
|
2069
|
+
"description": "Highest secret detection score seen in any turn of the session (0-100)",
|
|
2070
|
+
"range": "0-100"
|
|
1983
2071
|
},
|
|
1984
2072
|
{
|
|
1985
2073
|
"key": "session_cumulative_risk_score",
|