forked from cyberviser/Hancock
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathopenapi.yaml
More file actions
626 lines (605 loc) · 19.9 KB
/
openapi.yaml
File metadata and controls
626 lines (605 loc) · 19.9 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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
openapi: 3.1.0
info:
title: Hancock — CyberViser AI Security Agent
version: 0.6.0
description: |
Hancock is an AI-powered cybersecurity agent by CyberViser. It provides
REST endpoints for SOC triage, penetration testing guidance, threat hunting,
incident response, security code generation, CISO advisory, Sigma rule
authoring, and SIEM webhook integration.
contact:
name: CyberViser
email: contact@cyberviser.ai
url: https://cyberviser.ai
license:
name: MIT
url: https://github.com/cyberviser/Hancock/blob/main/LICENSE
servers:
- url: http://localhost:5000
description: Local development
- url: https://your-oracle-vm-ip
description: Oracle Cloud production
security:
- bearerAuth: []
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
description: Set HANCOCK_API_KEY env var to enable auth. Leave unset to disable.
schemas:
Error:
type: object
properties:
error:
type: string
request_id:
type: string
required: [error, request_id]
ModelRef:
type: object
properties:
model:
type: string
description: Model ID used to generate the response
paths:
/health:
get:
summary: Health check
security: []
tags: [System]
responses:
"200":
description: Service is healthy
content:
application/json:
schema:
type: object
properties:
status: { type: string, example: ok }
agent: { type: string, example: Hancock }
model: { type: string }
company: { type: string, example: CyberViser }
modes: { type: array, items: { type: string } }
endpoints: { type: array, items: { type: string } }
/v1/agents:
get:
summary: List available agent prompts and metadata
tags: [System]
responses:
"200":
description: Agent system prompts and defaults
content:
application/json:
schema:
type: object
properties:
agents:
type: object
additionalProperties:
type: string
default_mode:
type: string
example: auto
model:
type: string
/metrics:
get:
summary: Prometheus-compatible metrics
security: []
tags: [System]
responses:
"200":
description: Plain-text Prometheus metrics
content:
text/plain:
schema:
type: string
/internal/diagnostics:
get:
summary: Auth-gated internal runtime diagnostics
description: |
Returns non-secret runtime metadata for operators when
HANCOCK_ENABLE_INTERNAL_DIAGNOSTICS is enabled. The server must also
have HANCOCK_API_KEY configured.
tags: [System]
responses:
"200":
description: Runtime metadata snapshot
content:
application/json:
schema:
type: object
properties:
backend_mode:
type: string
example: ollama
current_model:
type: string
model_aliases:
type: object
description: Mapping of model alias names to resolved model IDs.
additionalProperties:
type: string
rate_limit:
type: object
properties:
requests_per_minute:
type: integer
example: 60
window_seconds:
type: integer
example: 60
auth_enabled:
type: boolean
example: true
uptime:
type: object
properties:
seconds:
type: integer
example: 123
started_at_unix:
type: integer
example: 1710000000
"401": { description: Unauthorized }
"403": { description: Endpoint misconfigured without HANCOCK_API_KEY }
"404": { description: Endpoint disabled }
"429": { description: Rate limit exceeded }
/v1/chat:
post:
summary: Multi-turn chat
tags: [Chat]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [message]
properties:
message:
type: string
description: User message
history:
type: array
description: Prior conversation turns
items:
type: object
properties:
role: { type: string, enum: [user, assistant] }
content: { type: string }
mode:
type: string
enum: [pentest, soc, auto, code, ciso, sigma, yara, ioc, osint]
default: auto
stream:
type: boolean
default: false
description: Stream response as Server-Sent Events
responses:
"200":
description: Chat response
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
response: { type: string }
mode: { type: string }
text/event-stream:
schema:
type: string
description: Server-sent events stream emitted when `stream=true`
"400": { description: Bad request, content: { application/json: { schema: { $ref: "#/components/schemas/Error" } } } }
"401": { description: Unauthorized }
"429": { description: Rate limit exceeded }
"502": { description: Model returned empty response }
/v1/ask:
post:
summary: Single-shot question (no history)
tags: [Chat]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [question]
properties:
question: { type: string }
mode:
type: string
default: auto
description: Supports the same chat modes as `/v1/chat`; invalid values fall back to `auto`.
responses:
"200":
description: Answer
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
answer: { type: string }
mode: { type: string }
"400": { description: Bad request }
"401": { description: Unauthorized }
/v1/triage:
post:
summary: SOC alert triage
tags: [SOC]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [alert]
properties:
alert: { type: string, description: Raw alert text }
responses:
"200":
description: Triage result with severity, ATT&CK mapping, containment steps
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
triage: { type: string }
"400": { description: Bad request }
/v1/hunt:
post:
summary: Threat hunting query generator
tags: [SOC]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [target]
properties:
target: { type: string, description: "TTP or behaviour to hunt, e.g. lateral movement with PsExec" }
siem:
type: string
default: splunk
description: SIEM platform label. Common values are splunk, elastic, and sentinel.
responses:
"200":
description: SIEM query with explanation
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
query: { type: string }
siem: { type: string }
/v1/respond:
post:
summary: Incident response playbook (PICERL)
tags: [SOC]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [incident]
properties:
incident: { type: string, description: "Incident type, e.g. ransomware, BEC, data exfiltration" }
responses:
"200":
description: PICERL playbook
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
playbook: { type: string }
incident: { type: string }
/v1/code:
post:
summary: Security code generation
tags: [Code]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [task]
properties:
task: { type: string, description: "Code task, e.g. write a Splunk query for kerberoasting" }
language: { type: string, description: "Optional: python, bash, kql, spl, yara, sigma" }
responses:
"200":
description: Generated code
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
code: { type: string }
language: { type: string }
task: { type: string }
/v1/ciso:
post:
summary: CISO advisor — risk, compliance, board reporting
tags: [CISO]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [question]
properties:
question: { type: string, description: "Also accepts 'query' or 'message' as alias" }
context: { type: string, description: "Optional: org size, industry, current frameworks" }
output:
type: string
default: advice
description: Formatting hint. Valid values include advice, report, gap-analysis, and board-summary.
responses:
"200":
description: CISO advice or structured output
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
advice: { type: string }
output: { type: string }
/v1/sigma:
post:
summary: Sigma detection rule generator
tags: [Detection]
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
description:
type: string
description: "TTP or behaviour to detect. Also accepts 'ttp' or 'query' as alias."
logsource:
type: string
description: "Log source hint, e.g. windows sysmon, linux auditd, aws cloudtrail"
technique:
type: string
description: "MITRE ATT&CK technique ID, e.g. T1059.001"
responses:
"200":
description: Sigma rule YAML + tuning notes
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
rule: { type: string, description: Full Sigma YAML + explanation }
logsource: { type: string }
technique: { type: string }
"400": { description: Bad request }
/v1/webhook:
post:
summary: SIEM/EDR push webhook — auto-triage incoming alerts
description: |
Auto-triage SIEM/EDR alerts. Set `HANCOCK_WEBHOOK_SECRET` env var to enable
HMAC-SHA256 signature verification. Sign requests with header:
`X-Hancock-Signature: sha256=<hmac_hex>`
tags: [SOC]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [alert]
properties:
alert: { type: string }
source: { type: string, description: "e.g. splunk, elastic, sentinel, crowdstrike", default: unknown }
severity: { type: string, description: "e.g. critical, high, medium, low", default: unknown }
responses:
"200":
description: Triage result
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
status: { type: string, example: triaged }
source: { type: string }
severity: { type: string }
triage: { type: string }
/v1/yara:
post:
summary: YARA malware detection rule generator
tags: [Detection]
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
description:
type: string
description: "Malware family or behaviour. Also accepts 'malware' or 'query' as alias."
file_type:
type: string
description: "File type hint — PE, Office macro, PDF, script, shellcode, memory"
hash:
type: string
description: "Known SHA256 sample hash — included in rule meta section"
responses:
"200":
description: YARA rule + tuning notes
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
rule: { type: string, description: Full YARA rule + explanation }
file_type: { type: string }
"400": { description: Bad request }
/v1/ioc:
post:
summary: IOC enrichment
tags: [IOC]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [indicator]
properties:
indicator:
type: string
description: "IOC value. Also accepts 'ioc' or 'query' as alias."
type:
type: string
default: auto
description: "Indicator type hint such as ip, domain, url, hash, email, or auto."
context:
type: string
description: "Optional additional context."
responses:
"200":
description: Threat intel enrichment report
content:
application/json:
schema:
allOf:
- $ref: "#/components/schemas/ModelRef"
- type: object
properties:
indicator: { type: string }
type: { type: string }
report: { type: string }
"400": { description: Bad request }
"401": { description: Unauthorized }
"429": { description: Rate limit exceeded }
"502": { description: Model returned empty response }
/v1/geolocate:
post:
summary: Geolocate IP and domain indicators
tags: [OSINT]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [indicators]
properties:
indicators:
type: array
items: { type: string }
responses:
"200":
description: Geolocation results
content:
application/json:
schema:
type: object
properties:
indicators:
type: array
items: { type: string }
results:
type: array
items:
type: object
additionalProperties: true
count:
type: integer
"400": { description: Bad request }
"401": { description: Unauthorized }
"429": { description: Rate limit exceeded }
"500": { description: Internal server error }
/v1/predict-locations:
post:
summary: Predict future threat infrastructure locations
tags: [OSINT]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [historical_data]
properties:
historical_data:
type: array
items:
type: object
additionalProperties: true
responses:
"200":
description: Predictive location analysis
content:
application/json:
schema:
type: object
properties:
predictions:
type: array
items:
type: object
additionalProperties: true
count:
type: integer
"400": { description: Bad request }
"401": { description: Unauthorized }
"429": { description: Rate limit exceeded }
"500": { description: Internal server error }
/v1/map-infrastructure:
post:
summary: Map and cluster threat infrastructure
tags: [OSINT]
requestBody:
required: true
content:
application/json:
schema:
type: object
required: [indicators]
properties:
indicators:
type: array
items: { type: string }
responses:
"200":
description: Infrastructure mapping result
content:
application/json:
schema:
type: object
additionalProperties: true
"400": { description: Bad request }
"401": { description: Unauthorized }
"429": { description: Rate limit exceeded }
"500": { description: Internal server error }