forked from Shuffle/openapi-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfir-iris.yaml
2877 lines (2854 loc) · 91.7 KB
/
dfir-iris.yaml
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
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: DFIR-IRIS
description: >-
IRIS API endpoints documentation. An API key is needed and can be found in
every user profile under `My settings` > `API Key`.
Applies to Iris v1.4.3 and onward.
This version introduces the concept of custom attributes. These JSON objects that are stored into almost all case objects such as Assets, IOCs, etc. They are defined by administrators or modules and can vary from one objet to another despite being of the same type. Because of this, no definitive structure can be expected from these fields. They are all named ``custom_attributes``.
version: "1.0"
x-logo: data:image/png;base64,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
contact:
email: [email protected]
name: DFIR-IRIS
x-categories:
- Cases
servers:
- url: http://127.0.0.1:8000
host: 127.0.0.1:8000
basePath: /
schemes:
- "http:"
paths:
/api/ping:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Ping server
operationId: Ping_server
description: 'Used to test authentication. Respond "pong" if authentication is
successfull. '
parameters: []
requestBody:
content: {}
/api/versions:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"api_current": "",
"api_min": "",
"iris_current": ""
}
summary: Get API versions
operationId: Get_API_versions
description: "Returns information on API versions supported by the server. "
parameters: []
requestBody:
content: {}
/case/assets/add:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"analysis_status_id": [],
"asset_compromised": [],
"asset_description": "",
"asset_domain": "",
"asset_id": [],
"asset_info": "",
"asset_ip": "",
"asset_name": "",
"asset_tags": "",
"asset_type_id": [],
"case_id": [],
"custom_attributes": [],
"date_added": "",
"date_update": "",
"user_id": []
}
summary: Add a new asset
operationId: Add_a_new_asset
description: "Create an asset and link it to the case. "
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"analysis_status_id": "${analysis_status_id}",
"asset_description": "${asset_description}",
"asset_domain": "${asset_domain}",
"asset_info": "${asset_info}",
"asset_ip": "${asset_ip}",
"asset_name": "${asset_name}",
"asset_type_id": "${asset_type_id}",
"cid": "${cid}",
"custom_attributes": "${custom_attributes}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"analysis_status_id": "${analysis_status_id}",
"asset_description": "${asset_description}",
"asset_domain": "${asset_domain}",
"asset_info": "${asset_info}",
"asset_ip": "${asset_ip}",
"asset_name": "${asset_name}",
"asset_type_id": "${asset_type_id}",
"cid": "${cid}",
"custom_attributes": "${custom_attributes}"
}
"/case/assets/delete/{asset_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete an asset
operationId: Delete_an_asset
description: "Delete an asset for the case. If the asset is linked in an event,
the reference is also removed. "
parameters:
- in: query
name: cid
description: Case ID
required: false
schema:
type: string
- in: path
name: asset_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/assets/list:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"assets": [],
"state": []
}
summary: Get list of assets
operationId: Get_list_of_assets
description: "Get a list of the assets linked to the case. "
parameters:
- in: query
name: cid
description: Case ID
required: false
schema:
type: string
requestBody:
content: {}
"/case/assets/update/{asset_id}":
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"analysis_status_id": [],
"asset_compromised": [],
"asset_description": "",
"asset_domain": "",
"asset_id": [],
"asset_info": "",
"asset_ip": "",
"asset_name": "",
"asset_type_id": [],
"case_id": [],
"date_added": "",
"date_update": "",
"user_id": []
}
summary: Update an asset
operationId: Update_an_asset
description: Update an asset
parameters:
- in: path
name: asset_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"analysis_status_id": "${analysis_status_id}",
"asset_compromised": "${asset_compromised}",
"asset_description": "${asset_description}",
"asset_domain": "${asset_domain}",
"asset_info": "${asset_info}",
"asset_ip": "${asset_ip}",
"asset_name": "${asset_name}",
"asset_type_id": "${asset_type_id}",
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"ioc_links": "${ioc_links}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"analysis_status_id": "${analysis_status_id}",
"asset_compromised": "${asset_compromised}",
"asset_description": "${asset_description}",
"asset_domain": "${asset_domain}",
"asset_info": "${asset_info}",
"asset_ip": "${asset_ip}",
"asset_name": "${asset_name}",
"asset_type_id": "${asset_type_id}",
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"ioc_links": "${ioc_links}"
}
"/case/assets/{asset_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"analysis_status_id": [],
"asset_compromised": [],
"asset_description": "",
"asset_domain": "",
"asset_id": [],
"asset_info": "",
"asset_ip": "",
"asset_name": "",
"asset_tags": "",
"asset_type_id": [],
"case_id": [],
"custom_attributes": [],
"date_added": "",
"date_update": "",
"linked_ioc": [],
"user_id": []
}
summary: Fetch an asset
operationId: Fetch_an_asset
description: Fetch the content of an asset
parameters:
- in: query
name: cid
description: Case ID
required: false
schema:
type: string
- in: path
name: asset_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/evidences/add:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"custom_attributes": [],
"date_added": "",
"file_description": "",
"file_hash": "",
"file_size": [],
"filename": "",
"id": []
}
summary: Add an evidence
operationId: Add_an_evidence
description: Link a new evidence to the case
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"file_description": "${file_description}",
"file_hash": "${file_hash}",
"file_size": "${file_size}",
"filename": "${filename}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"file_description": "${file_description}",
"file_hash": "${file_hash}",
"file_size": "${file_size}",
"filename": "${filename}"
}
"/case/evidences/delete/{evidence_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete a case evidence
operationId: Delete_a_case_evidence
description: "Remove an evidence from the case. "
parameters:
- in: query
name: cid
description: Case ID
required: true
schema:
type: string
- in: path
name: evidence_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/evidences/list:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Get case evidences
operationId: Get_case_evidences
description: Returns a list of all evidences
parameters:
- in: query
name: cid
description: case id
required: false
schema:
type: string
requestBody:
content: {}
"/case/evidences/update/{evidence_id}":
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"custom_attributes": [],
"date_added": "",
"file_description": "",
"file_hash": "",
"file_size": [],
"filename": "",
"id": []
}
summary: Update an evidence
operationId: Update_an_evidence
parameters:
- in: path
name: evidence_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"file_description": "${file_description}",
"file_hash": "${file_hash}",
"file_size": "${file_size}",
"filename": "${filename}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"file_description": "${file_description}",
"file_hash": "${file_hash}",
"file_size": "${file_size}",
"filename": "${filename}"
}
"/case/evidences/{evidence_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"custom_attributes": [],
"date_added": "",
"file_description": "",
"file_hash": "",
"file_size": [],
"filename": "",
"id": []
}
summary: Get an evidence
operationId: Get_an_evidence
description: Returns information of a specific evidence
parameters:
- in: query
name: cid
description: Case ID
required: true
schema:
type: string
- in: path
name: evidence_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/export:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Export a case as JSON
operationId: Export_a_case_as_JSON
description: "Export a case in JSON format including all the information such as
assets, iocs, etc. This request can take a very long time depending on
the size of the case. "
parameters:
- in: query
name: cid
description: ID Of the case to export
required: false
schema:
type: string
requestBody:
content: {}
/case/ioc/add:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"custom_attributes": [],
"ioc_description": "",
"ioc_id": [],
"ioc_tags": "",
"ioc_tlp_id": [],
"ioc_type": [],
"ioc_type_id": [],
"ioc_value": "",
"user_id": []
}
summary: Add a new ioc
operationId: Add_a_new_ioc
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"ioc_description": "${ioc_description}",
"ioc_tags": "${ioc_tags}",
"ioc_tlp_id": "${ioc_tlp_id}",
"ioc_type_id": "${ioc_type_id}",
"ioc_value": "${ioc_value}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"cid": "${cid}",
"custom_attributes": "${custom_attributes}",
"ioc_description": "${ioc_description}",
"ioc_tags": "${ioc_tags}",
"ioc_tlp_id": "${ioc_tlp_id}",
"ioc_type_id": "${ioc_type_id}",
"ioc_value": "${ioc_value}"
}
"/case/ioc/delete/{ioc_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete an IOC
operationId: Delete_an_IOC
description: "Delete an IOC from the case. If the IOC is still reference in
other cases than it's only unlinked from the current case. "
parameters:
- in: query
name: cid
description: Case ID
required: true
schema:
type: string
- in: path
name: ioc_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/ioc/list:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"ioc": [],
"state": []
}
summary: Get list of IOCs
operationId: Get_list_of_IOCs
description: "Returns a list of IOCs as well as any existing linked with other
cases. "
parameters:
- in: query
name: cid
description: Case ID
required: false
schema:
type: string
requestBody:
content: {}
"/case/ioc/update/{ioc_id}":
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"custom_attributes": [],
"ioc_description": "",
"ioc_id": [],
"ioc_tags": "",
"ioc_tlp_id": [],
"ioc_type": [],
"ioc_type_id": [],
"ioc_value": "",
"user_id": []
}
summary: Update an IOC
operationId: Update_an_IOC
parameters:
- in: path
name: ioc_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"custom_attributes": "${custom_attributes}",
"ioc_description": "${ioc_description}",
"ioc_tags": "${ioc_tags}",
"ioc_tlp_id": "${ioc_tlp_id}",
"ioc_type_id": "${ioc_type_id}",
"ioc_value": "${ioc_value}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"custom_attributes": "${custom_attributes}",
"ioc_description": "${ioc_description}",
"ioc_tags": "${ioc_tags}",
"ioc_tlp_id": "${ioc_tlp_id}",
"ioc_type_id": "${ioc_type_id}",
"ioc_value": "${ioc_value}"
}
"/case/ioc/{ioc_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"ioc_description": "",
"ioc_id": [],
"ioc_tags": "",
"ioc_tlp_id": [],
"ioc_type": [],
"ioc_type_id": [],
"ioc_value": "",
"link": [],
"user_id": []
}
summary: Fetch an ioc
operationId: Fetch_an_ioc
description: Fetch the content of an ioc
parameters:
- in: query
name: cid
description: Case ID
required: false
schema:
type: string
- in: path
name: ioc_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/notes/add:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"custom_attributes": [],
"note_content": "",
"note_creationdate": "",
"note_id": [],
"note_lastupdate": "",
"note_title": ""
}
summary: Add a new note
operationId: Add_a_new_note
description: "Add a new note to an existing group. "
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"cid": "${cid}",
"group_id": "${group_id}",
"note_content": "${note_content}",
"note_title": "${note_title}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"cid": "${cid}",
"group_id": "${group_id}",
"note_content": "${note_content}",
"note_title": "${note_title}"
}
"/case/notes/delete/{note_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete a note
operationId: Delete_a_note
description: "Delete the content of a note. "
parameters:
- in: query
name: cid
description: ID Of the case
required: true
schema:
type: string
- in: path
name: note_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/notes/groups/add:
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"group_creationdate": "",
"group_id": [],
"group_lastupdate": "",
"group_title": ""
}
summary: Add a new notes group
operationId: Add_a_new_notes_group
description: "The created group is empty. "
parameters:
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"cid": "${cid}",
"group_title": "${group_title}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"cid": "${cid}",
"group_title": "${group_title}"
}
"/case/notes/groups/delete/{group_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: ""
summary: Delete a group note
operationId: Delete_a_group_note
description: "Delete a group with all notes linked to it. It is not possible to
recover deleted notes. "
parameters:
- in: query
name: cid
description: ID Of the case
required: true
schema:
type: string
- in: path
name: group_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/notes/groups/list:
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"groups": [],
"state": []
}
summary: Get list of groups and notes
operationId: Get_list_of_groups_and_notes
description: Get a list of the notes and groups
parameters:
- in: query
name: cid
description: Case ID
required: false
schema:
type: string
requestBody:
content: {}
"/case/notes/groups/update/{group_id}":
post:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"group_creationdate": "",
"group_id": [],
"group_lastupdate": "",
"group_title": ""
}
summary: Update a notes group
operationId: Update_a_notes_group
parameters:
- in: path
name: group_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
- in: body
name: body
multiline: true
description: Generated by shuffler.io OpenAPI
required: false
example: |-
{
"cid": "${cid}",
"group_title": "${group_title}"
}
schema:
type: string
requestBody:
description: Generated by Shuffler.io
required: false
content:
example:
example: |-
{
"cid": "${cid}",
"group_title": "${group_title}"
}
"/case/notes/groups/{group_id}":
get:
responses:
default:
description: default
content:
text/plain:
schema:
type: string
example: |-
{
"group_creationdate": "",
"group_id": [],
"group_lastupdate": "",
"group_title": "",
"notes": []
}
summary: Fetch a notes group
operationId: Fetch_a_notes_group
description: Fetch a notes group
parameters:
- in: query
name: cid
description: ID Of the case
required: true
schema:
type: string
- in: path
name: group_id
description: Generated by shuffler.io OpenAPI
required: true
schema:
type: string
requestBody:
content: {}
/case/notes/search:
post:
responses:
default:
description: default