-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmkdocs.yml
More file actions
1003 lines (987 loc) · 96.8 KB
/
mkdocs.yml
File metadata and controls
1003 lines (987 loc) · 96.8 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
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
---
copyright: Copyright 2025 StrangeBee. All rights reserved.
site_name: TheHive 5 Documentation
site_url: https://docs.strangebee.com
theme:
name: material
custom_dir: ./overrides/
logo: 'assets/images/strangebee.svg'
palette:
# primary: custom
# accent: custom
features:
- content.code.annotate
- content.code.copy
- content.tabs.link
# - navigation.sections
- navigation.instant
- navigation.instant.progress
# - navigation.indexes
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- navigation.tracking
- search.highlight
- search.share
- search.suggest
- toc.follow
- toc.integrate
- navigation.path
- announce.dismiss
# palette:
# primary: blue
# accent: blue
font:
text: Nunito Sans
code: Source Code Pro
favicon: assets/images/favicon.ico
watch:
- ./overrides/
extra_css:
- assets/stylesheets/extra.css
- assets/stylesheets/badge.css
- assets/stylesheets/front.css
extra_javascript:
- assets/js/main.js
- assets/js/init_kapa_widget.js
hooks:
- ./overrides/hooks/shortcodes.py
plugins:
- search
- exclude-search:
exclude:
- includes/*
- thehive/operations/configure-audit-logs-storage-elasticsearch.md
- thehive/third-party-software-licenses.md
- awesome-pages
- glightbox
- mkdocs-video:
is_video: True
video_controls: True
css_style:
width: "100%"
- include-markdown
- htmlproofer:
enabled: !ENV [ENABLED_HTMLPROOFER, false]
raise_error_after_finish: True
validate_external_urls: False
skip_downloads: True
- redirects:
redirect_maps:
'thehive/index.md': 'thehive/overview/index.md'
'thehive/installation/upgrade-from-5.0.x.md': 'thehive/installation/upgrade-from-5.x.md'
'thehive/release-notes/latest.md' : 'thehive/release-notes/release-notes-5.4.md'
'thehive/setup/index.md': 'thehive/overview/index.md'
'thehive/setup/installation/step-by-step-guide.md' : 'thehive/installation/installation-guide-linux-standalone-server.md'
'thehive/setup/configuration/ssl.md' : 'thehive/configuration/ssl/configure-ssl-jvm.md'
'thehive/setup/installation/docker.md': 'thehive/installation/docker.md'
'thehive/user-guides/analyst-corner/search/about-search.md': 'thehive/user-guides/analyst-corner/cases/search-for-cases/overview-search-methods-case.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/alerts.md': 'thehive/user-guides/analyst-corner/alerts/search-for-alerts/find-an-alert.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/auditlogs.md': 'thehive/user-guides/analyst-corner/cases/search-for-cases/overview-search-methods-case.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/cases.md': 'thehive/user-guides/analyst-corner/cases/search-for-cases/find-a-case.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/jobs.md': 'thehive/user-guides/analyst-corner/cases/search-for-cases/find-a-job.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/observables.md': 'thehive/user-guides/analyst-corner/cases/search-for-cases/find-an-observable.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/tasklogs.md': 'thehive/user-guides/analyst-corner/tasks/search-for-tasks/find-a-task-log.md'
'thehive/user-guides/analyst-corner/search//search-scope-by/tasks.md': 'thehive/user-guides/analyst-corner/tasks/search-for-tasks/find-a-task.md'
'thehive/administration/custom-fields.md': 'thehive/administration/custom-fields/about-custom-fields.md'
'thehive/user-guides/analyst-corner/task/about-tasks.md': 'thehive/user-guides/analyst-corner/tasks/about-tasks.md'
'thehive/user-guides/analyst-corner/task/preview-task-details/Preview-tasks.md': 'thehive/user-guides/analyst-corner/tasks/about-tasks.md'
'thehive/user-guides/analyst-corner/task/preview-task-details/create-a-task-log.md': 'thehive/user-guides/analyst-corner/tasks/create-a-task-log.md'
'thehive/user-guides/analyst-corner/task/preview-task-details/actions.md': 'thehive/user-guides/analyst-corner/tasks/create-a-task.md'
'thehive/user-guides/analyst-corner/task/preview-task-details/run-responders.md': 'thehive/user-guides/analyst-corner/tasks/run-responders-on-a-task.md'
'thehive/administration/organisation-links.md': 'thehive/administration/organizations/link-an-organization.md'
'thehive/administration/organisations.md': 'thehive/administration/organizations/about-organizations.md'
'thehive/user-guides/analyst-corner/organizations.md': 'thehive/administration/organizations/about-organizations.md'
'thehive/user-guides/organisation/attachments.md': 'thehive/user-guides/organization/configure-organization/manage-attachments/add-an-attachment-organization.md'
'thehive/user-guides/organisation/accounts.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md'
'thehive/user-guides/organisation/configure-organization/manage-attachments/about-attachments.md': 'thehive/user-guides/analyst-corner/cases/attachments/about-attachments.md'
'thehive/user-guides/organisation/configure-organization/manage-attachments/update-attachments.md': 'thehive/user-guides/analyst-corner/cases/attachments/add-an-attachment-case-alert.md'
'thehive/user-guides/organisation/configure-organization/manage-case-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/create-a-case-template.md'
'thehive/user-guides/organisation/configure-organization/manage-custom-tags/about_custom_tags.md': 'thehive/user-guides/organization/configure-organization/manage-custom-tags/about-custom-tags.md'
'thehive/user-guides/organisation/configure-organization/manage-custom-tags/manage_views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/organisation/configure-organization/manage-custom-tags/update.md': 'thehive/user-guides/organization/configure-organization/manage-custom-tags/rename-a-custom-tag.md'
'thehive/user-guides/organisation/configure-organization/manage-notifications/manage_notification.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/about-notifications.md'
'thehive/user-guides/organisation/configure-organization/manage-notifications/supported-notifiers.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/about-notifications.md'
'thehive/user-guides/organisation/configure-organization/manage-notifications/triggering-events.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/write-filtered-event-trigger.md'
'thehive/user-guides/organisation/configure-organization/manage-ui-configuration/about-ui-configuration.md': 'thehive/user-guides/organization/configure-organization/manage-ui-configuration/ui-configuration-settings.md'
'thehive/user-guides/organisation/configure-organization/manage-users/add-delete-user.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/create-a-user-account.md'
'thehive/user-guides/organisation/configure-organization/manage-users/lock.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/lock-a-user-account.md'
'thehive/user-guides/organisation/configure-organization/manage-users/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/organisation/configure-organization/manage-users/preview.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md'
'thehive/user-guides/organisation/configure-organization/manage-users/sort.md': 'thehive/user-guides/analyst-corner/about-filtering-and-sorting.md'
'thehive/user-guides/organisation/custom-tags.md': 'thehive/user-guides/organization/configure-organization/manage-custom-tags/about-custom-tags.md'
'thehive/user-guides/organisation/functions.md': 'thehive/user-guides/organization/configure-organization/manage-functions/about-functions.md'
'thehive/user-guides/organisation/manage-endpoints/about-endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organisation/manage-endpoints/add_endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organisation/notifications/analyzers.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/analyzers.md'
'thehive/user-guides/organisation/notifications/email-to-addr.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/email-to-addr.md'
'thehive/user-guides/organisation/notifications/email-to-users.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/email-to-users.md'
'thehive/user-guides/organisation/notifications/endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organisation/notifications/filteredevents.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/write-filtered-event-trigger.md'
'thehive/user-guides/organisation/notifications/http-request.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/http-request.md'
'thehive/user-guides/organisation/notifications/introduction.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/about-notifications.md'
'thehive/user-guides/organisation/notifications/kafka.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/kafka.md'
'thehive/user-guides/organisation/notifications/mattermost.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/mattermost.md'
'thehive/user-guides/organisation/notifications/redis.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/redis.md'
'thehive/user-guides/organisation/notifications/responders.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/responders.md'
'thehive/user-guides/organisation/notifications/slack.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/slack.md'
'thehive/user-guides/organisation/notifications/teams.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/teams.md'
'thehive/user-guides/organisation/notifications/webhook.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/webhook.md'
'thehive/user-guides/organisation/templates/case-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/about-case-templates.md'
'thehive/user-guides/organisation/templates/page-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/about-case-page-templates.md'
'thehive/user-guides/organisation/templates/report-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/about-case-report-templates.md'
'thehive/user-guides/organisation/ui-configuration.md': 'thehive/user-guides/organization/configure-organization/manage-ui-configuration/ui-configuration-settings.md'
'thehive/user-guides/analyst-corner/alerts/actions.md': 'thehive/user-guides/analyst-corner/alerts/start-investigating-an-alert.md'
'thehive/user-guides/analyst-corner/alerts/general.md': 'thehive/user-guides/analyst-corner/alerts/about-alerts.md'
'thehive/user-guides/analyst-corner/alerts/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/analyst-corner/alerts/merge-alerts.md': 'thehive/user-guides/analyst-corner/alerts/add-an-alert-to-an-existing-case.md'
'thehive/user-guides/analyst-corner/alerts/new-case-from-selection.md': 'thehive/user-guides/analyst-corner/alerts/create-a-case-from-an-alert.md'
'thehive/user-guides/analyst-corner/alerts/preview-alerts.md': 'thehive/user-guides/analyst-corner/alerts/about-alerts.md'
'thehive/user-guides/analyst-corner/alerts/run-responders.md': 'thehive/user-guides/analyst-corner/alerts/run-responders-on-an-alert.md'
'thehive/user-guides/analyst-corner/alerts/view-observables.md': 'thehive/user-guides/analyst-corner/cases/observables/about-observables.md'
'thehive/user-guides/analyst-corner/alerts/view-responders.md': 'thehive/user-guides/analyst-corner/alerts/run-responders-on-an-alert.md'
'thehive/user-guides/analyst-corner/alerts/view-similar-alerts.md': 'thehive/user-guides/analyst-corner/cases/find-similar-alerts-cases.md'
'thehive/user-guides/analyst-corner/alerts/view-similar-cases.md': 'thehive/user-guides/analyst-corner/cases/find-similar-alerts-cases.md'
'thehive/user-guides/analyst-corner/alerts/view-ttps.md': 'thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md'
'thehive/user-guides/analyst-corner/cases-list/about-a-case-list.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases-list/actions.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases-list/preview-cases.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases-list/tasks.md': 'thehive/user-guides/analyst-corner/cases/add-tasks-to-a-case.md'
'thehive/user-guides/analyst-corner/cases-list/timeline.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/about-case-timelines.md'
'thehive/user-guides/analyst-corner/cases/about-a-case.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases-list/add-custom-event.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/add-custom-event-timeline.md'
'thehive/user-guides/analyst-corner/cases-list/add-custom-fields.md': 'thehive/user-guides/analyst-corner/cases/custom-fields/add-custom-fields.md'
'thehive/user-guides/analyst-corner/cases-list/attachments.md': 'thehive/user-guides/analyst-corner/cases/attachments/about-attachments.md'
'thehive/user-guides/analyst-corner/cases-list/configure-pap-tlp-severity.md': 'thehive/user-guides/analyst-corner/cases/change-case-alert-classification-settings.md'
'thehive/user-guides/analyst-corner/cases-list/general.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases-list/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/analyst-corner/cases-list/observables.md': 'thehive/user-guides/analyst-corner/cases/observables/about-observables.md'
'thehive/user-guides/analyst-corner/cases-list/run-analyzer.md': 'thehive/user-guides/analyst-corner/cases/observables/run-analyzers-on-an-observable.md'
'thehive/user-guides/analyst-corner/cases-list/run-responders.md': 'thehive/user-guides/analyst-corner/cases/run-responders-on-a-case.md'
'thehive/user-guides/analyst-corner/cases-list/ttps.md': 'thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md'
'thehive/user-guides/indicators.md': 'thehive/user-guides/key-performance-indicators/key-performance-indicators.md'
'thehive/how-to/case-management.md': 'thehive/user-guides/analyst-corner/cases/create-a-new-case.md'
'thehive/user-guides/analyst-corner/cases/create-case-from-archive.md': 'thehive/user-guides/analyst-corner/cases/create-a-new-case.md'
'thehive/user-guides/analyst-corner/cases/create-case-from-misp.md': 'thehive/user-guides/analyst-corner/cases/create-a-new-case.md'
'thehive/user-guides/analyst-corner/cases/create-case-from-template.md': 'thehive/user-guides/analyst-corner/cases/create-a-new-case.md'
'thehive/user-guides/analyst-corner/cases/create-empty-case.md': 'thehive/user-guides/analyst-corner/cases/create-a-new-case.md'
'thehive/user-guides/organization/configure-organization/manage-case-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/create-a-case-template.md'
'thehive/user-guides/organization/manage-endpoints/about-endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organization/manage-endpoints/add_endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organization/templates/page-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/about-case-page-templates.md'
'thehive/user-guides/organization/templates/report-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/about-case-report-templates.md'
'thehive/user-guides/organization/templates/case-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/create-a-case-template.md'
'thehive/user-guides/analyst-corner/cases/export-a-case.md': 'thehive/user-guides/analyst-corner/cases/export-a-case-to-misp.md'
'thehive/user-guides/organization/configure-organization/manage-templates/report-templates/report-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/about-case-report-templates.md'
'thehive/administration/authentication/general.md': 'thehive/administration/authentication/configure-authentication.md'
'thehive/how-to/authentication.md': 'thehive/administration/authentication/configure-authentication.md'
'thehive/setup/installation/upgrade-from-4.x.md': 'thehive/installation/upgrade-from-4.x.md'
'thehive/administration/misp.md': 'thehive/administration/misp-integration/about-misp-integration.md'
'thehive/how-to/misp-integration.md': 'thehive/administration/misp-integration/about-misp-integration.md'
'thehive/user-guides/key-performance-indicators/about-key-performance-indicators.md': 'thehive/user-guides/key-performance-indicators/key-performance-indicators.md'
'thehive/user-guides/key-performance-indicators/key-performance-indicators-formulas.md': 'thehive/user-guides/key-performance-indicators/key-performance-indicators.md'
'thehive/how-to/knowledge-base.md': 'thehive/user-guides/knowledge-base/about-knowledge-base.md'
'thehive/how-to/markdown.md': 'thehive/user-guides/thehive-flavored-markdown.md'
'thehive/user-guides/organization/configure-organization/manage-templates/page-templates/page-templates.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/about-case-page-templates.md'
'thehive/user-guides/organization/configure-organization/manage-endpoints/add_endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organization/configure-organization/manage-notifications/manage_notification.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/create-a-notification.md'
'thehive/user-guides/organization/functions.md': 'thehive/user-guides/organization/configure-organization/manage-functions/about-functions.md'
'thehive/user-guides/organization/notifications/analyzers.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/analyzers.md'
'thehive/user-guides/organization/notifications/email-to-addr.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/email-to-addr.md'
'thehive/user-guides/organization/notifications/email-to-users.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/email-to-users.md'
'thehive/user-guides/organization/notifications/endpoints.md': 'thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md'
'thehive/user-guides/organization/notifications/filteredevents.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/write-filtered-event-trigger.md'
'thehive/user-guides/organization/notifications/http-request.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/http-request.md'
'thehive/user-guides/organization/notifications/introduction.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/about-notifications.md'
'thehive/user-guides/organization/notifications/kafka.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/kafka.md'
'thehive/user-guides/organization/notifications/mattermost.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/mattermost.md'
'thehive/user-guides/organization/notifications/redis.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/redis.md'
'thehive/user-guides/organization/notifications/responders.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/responders.md'
'thehive/user-guides/organization/notifications/slack.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/slack.md'
'thehive/user-guides/organization/notifications/teams.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/teams.md'
'thehive/user-guides/organization/notifications/webhook.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/webhook.md'
'thehive/how-to/notifications.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/about-notifications.md'
'thehive/how-to/dashboards.md': 'thehive/user-guides/analyst-corner/dashboard/about-dashboards.md'
'thehive/user-guides/analyst-corner/Filter-and-sort.md': 'thehive/user-guides/analyst-corner/about-filtering-and-sorting.md'
'thehive/user-guides/analyst-corner/cases/cases-description/pages.md': 'thehive/user-guides/knowledge-base/view-a-knowledge-base-page.md'
'thehive/user-guides/analyst-corner/cases/cases-description/timeline.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/view-case-timeline.md'
'thehive/user-guides/analyst-corner/dashboard/about-dashboard.md': 'thehive/user-guides/analyst-corner/dashboard/about-dashboards.md'
'thehive/user-guides/analyst-corner/dashboard/filter-sort.md': 'thehive/user-guides/analyst-corner/about-filtering-and-sorting.md'
'thehive/user-guides/analyst-corner/dashboard/manage-dashboard.md': 'thehive/user-guides/analyst-corner/dashboard/about-dashboards.md'
'thehive/user-guides/analyst-corner/dashboard/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/about-widgets.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/widgets-case-report-templates.md'
'thehive/administration/cortex.md': 'thehive/administration/cortex/about-cortex.md'
'thehive/user-guides/analyst-corner/cases/cases-description/add-custom-fields.md': 'thehive/user-guides/analyst-corner/cases/custom-fields/add-custom-fields.md'
'thehive/administration/alert-status.md': 'thehive/administration/status/about-statuses.md'
'thehive/administration/case-status.md': 'thehive/administration/status/about-statuses.md'
'thehive/administration/taxonomies.md': 'thehive/administration/taxonomies/about-taxonomies.md'
'thehive/user-guides/analyst-corner/cases/adding_to_a_case.md': 'thehive/user-guides/analyst-corner/cases/add-tasks-to-a-case.md'
'thehive/user-guides/analyst-corner/cases/cases-description/add-custom-fields.md': 'thehive/user-guides/analyst-corner/cases/custom-fields/add-custom-fields.md'
'thehive/user-guides/analyst-corner/cases/cases-description/tasks.md': 'thehive/user-guides/analyst-corner/cases/add-tasks-to-a-case.md'
'thehive/user-guides/organization/configure-organization/manage-custom-tags/about_custom_tags.md': 'thehive/user-guides/organization/configure-organization/manage-custom-tags/about-custom-tags.md'
'thehive/user-guides/organization/configure-organization/manage-custom-tags/manage_views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/organization/configure-organization/manage-custom-tags/update.md': 'thehive/user-guides/organization/configure-organization/manage-custom-tags/rename-a-custom-tag.md'
'thehive/user-guides/organization/custom-tags.md': 'thehive/user-guides/organization/configure-organization/manage-custom-tags/about-custom-tags.md'
'thehive/user-guides/analyst-corner/tasks/index.md': 'thehive/user-guides/analyst-corner/tasks/about-tasks.md'
'thehive/user-guides/analyst-corner/tasks/manage-views.md': 'thehive/user-guides/analyst-corner/tasks/about-tasks.md'
'thehive/user-guides/analyst-corner/tasks/preview-task-details/Preview-tasks.md': 'thehive/user-guides/analyst-corner/tasks/about-tasks.md'
'thehive/user-guides/analyst-corner/tasks/preview-task-details/actions.md': 'thehive/user-guides/analyst-corner/tasks/create-a-task.md'
'thehive/user-guides/analyst-corner/tasks/preview-task-details/create-a-task-log.md': 'thehive/user-guides/analyst-corner/tasks/create-a-task-log.md'
'thehive/administration/cortex/edit-cortex-connection-settings.md': 'thehive/administration/cortex/add-a-cortex-server.md'
'thehive/administration/custom-fields/edit-a-custom-field.md': 'thehive/administration/custom-fields/manage-a-custom-field.md'
'thehive/administration/misp-integration/edit-a-misp-server.md': 'thehive/administration/misp-integration/connect-a-misp-server.md'
'thehive/user-guides/analyst-corner/dashboard/edit-a-dashboard.md': 'thehive/user-guides/analyst-corner/dashboard/add-remove-widgets-dashboard.md'
'thehive/user-guides/analyst-corner/dashboard/export-a-dashboard.md': 'thehive/user-guides/analyst-corner/dashboard/export-import-a-dashboard.md'
'thehive/user-guides/analyst-corner/dashboard/view-a-dashboard.md': 'thehive/user-guides/analyst-corner/dashboard/about-dashboards.md'
'thehive/user-guides/analyst-corner/dashboard/import-a-dashboard.md': 'thehive/user-guides/analyst-corner/dashboard/export-import-a-dashboard.md'
'thehive/user-guides/analyst-corner/tasks/edit-a-task-log.md': 'thehive/user-guides/analyst-corner/tasks/create-a-task-log.md'
'thehive/user-guides/analyst-corner/tasks/edit-a-task.md': 'thehive/user-guides/analyst-corner/tasks/create-a-task.md'
'thehive/user-guides/analyst-corner/tasks/flag-a-task.md': 'thehive/user-guides/analyst-corner/tasks/manage-a-task.md'
'thehive/user-guides/analyst-corner/tasks/pin-a-task.md': 'thehive/user-guides/analyst-corner/tasks/manage-a-task.md'
'thehive/user-guides/knowledge-base/edit-a-knowledge-base-page.md': 'thehive/user-guides/knowledge-base/create-a-knowledge-base-page.md'
'thehive/user-guides/organization/configure-organization/manage-feeders/edit-a-feeder.md': 'thehive/user-guides/organization/configure-organization/manage-feeders/create-a-feeder.md'
'thehive/user-guides/organization/configure-organization/manage-functions/edit-a-function.md': 'thehive/user-guides/organization/configure-organization/manage-functions/create-a-function.md'
'thehive/user-guides/organization/configure-organization/manage-notifications/edit-a-notification.md': 'thehive/user-guides/organization/configure-organization/manage-notifications/create-a-notification.md'
'thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/edit-a-case-page-template.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/create-a-case-page-template.md'
'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/edit-a-case-report-template.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/add-remove-widgets-case-report-template.md'
'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/edit-a-case-template.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/create-a-case-template.md'
'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/export-a-case-template.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/export-import-a-case-template.md'
'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/import-a-case-template.md': 'thehive/user-guides/organization/configure-organization/manage-templates/case-templates/export-import-a-case-template.md'
'thehive/administration/email-intake-connector.md': 'thehive/administration/email-intake-connector/about-email-intake-connectors.md'
'thehive/user-guides/analyst-corner/cases/tags/remove-tags.md': 'thehive/user-guides/analyst-corner/cases/tags/add-remove-tags.md'
'thehive/user-guides/analyst-corner/cases/tags/add-tags.md': 'thehive/user-guides/analyst-corner/cases/tags/add-remove-tags.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-reports/about-case-reports.md': 'thehive/user-guides/analyst-corner/cases/case-reports/about-case-reports.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-reports/download-a-case-report.md': 'thehive/user-guides/analyst-corner/cases/case-reports/save-download-a-case-report.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-timelines/about-case-timelines.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/about-case-timelines.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-timelines/add-custom-event-timeline.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/add-custom-event-timeline.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-timelines/delete-custom-event-timeline.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/delete-custom-event-timeline.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-timelines/export-case-timeline.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/export-case-timeline.md'
'thehive/user-guides/analyst-corner/cases/cases-description/case-timelines/view-case-timeline.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/view-case-timeline.md'
'thehive/user-guides/analyst-corner/cases/cases-description/add-custom-event.md': 'thehive/user-guides/analyst-corner/cases/case-timelines/add-custom-event-timeline.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/analyst-corner/cases/cases-description/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/organization/configure-organization/manage-users/manage-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/user-guides/organization/configure-organization/manage-users/sort.md': 'thehive/user-guides/analyst-corner/about-filtering-and-sorting.md'
'thehive/setup/installation/migration.md': 'thehive/installation/upgrade-from-5.x.md'
'thehive/setup/installation/upgrade-from-5.0.x.md': 'thehive/installation/upgrade-from-5.x.md'
'thehive/setup/installation/upgrade-from-5.x.md': 'thehive/installation/upgrade-from-5.x.md'
'thehive/administration/observables-types.md': 'thehive/administration/observable-types/create-an-observable-type.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/view-observables.md': 'thehive/user-guides/analyst-corner/cases/observables/about-observables.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/view-similar-alerts.md': 'thehive/user-guides/analyst-corner/cases/find-similar-alerts-cases.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/view-similar-cases.md': 'thehive/user-guides/analyst-corner/cases/find-similar-alerts-cases.md'
'thehive/user-guides/analyst-corner/cases/cases-description/observables.md': 'thehive/user-guides/analyst-corner/cases/observables/about-observables.md'
'thehive/administration/attack-patterns.md': 'thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/view-ttps.md': 'thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md'
'thehive/user-guides/analyst-corner/cases/cases-description/ttps.md': 'thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md'
'thehive/user-guides/analyst-corner/cases/cases-description/attachments.md': 'thehive/user-guides/analyst-corner/cases/attachments/add-an-attachment-case-alert.md'
'thehive/user-guides/organization/attachments.md': 'thehive/user-guides/organization/configure-organization/manage-attachments/add-an-attachment-organization.md'
'thehive/user-guides/organization/configure-organization/manage-attachments/about-attachments.md': 'thehive/user-guides/analyst-corner/cases/attachments/about-attachments.md'
'thehive/user-guides/organization/configure-organization/manage-attachments/update-attachments.md': 'thehive/user-guides/organization/configure-organization/manage-attachments/add-an-attachment-organization.md'
'thehive/administration/accounts.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md'
'thehive/administration/organizations/add-users-to-an-organization.md': 'thehive/administration/organizations/add-remove-an-existing-user-account-from-an-organization.md'
'thehive/how-to/user-management.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md'
'thehive/user-guides/forgot-password.md': 'thehive/user-guides/manage-password.md'
'thehive/user-guides/organization/accounts.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md'
'thehive/user-guides/organization/configure-organization/manage-users/add-delete-user.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/create-a-user-account.md'
'thehive/user-guides/organization/configure-organization/manage-users/lock.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/lock-a-user-account.md'
'thehive/user-guides/organization/configure-organization/manage-users/preview.md': 'thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md'
'thehive/administration/profiles.md': 'thehive/administration/profiles/about-profiles.md'
'thehive/user-guides/analyst-corner/theme.md': 'thehive/user-guides/change-account-theme.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/merge-alerts.md': 'thehive/user-guides/analyst-corner/alerts/add-an-alert-to-an-existing-case.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/new-case-from-selection.md': 'thehive/user-guides/analyst-corner/alerts/create-a-case-from-an-alert.md'
'thehive/user-guides/analyst-corner/cases/add-a-link-to-a-case.md': 'thehive/user-guides/analyst-corner/cases/case-links/add-a-link-to-a-case.md'
'thehive/user-guides/analyst-corner/cases/remove-a-link-from-a-case.md': 'thehive/user-guides/analyst-corner/cases/case-links/remove-a-link-from-a-case.md'
'thehive/user-guides/analyst-corner/cases/view-links-in-a-case.md': 'thehive/user-guides/analyst-corner/cases/case-links/view-links-in-a-case.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/actions.md': 'thehive/user-guides/analyst-corner/alerts/start-investigating-an-alert.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/general.md': 'thehive/user-guides/analyst-corner/alerts/about-alerts.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/run-responders.md': 'thehive/user-guides/analyst-corner/alerts/run-responders-on-an-alert.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/view-responders.md': 'thehive/user-guides/analyst-corner/alerts/run-responders-on-an-alert.md'
'thehive/user-guides/analyst-corner/cases/cases-description/run-analyzer.md': 'thehive/user-guides/analyst-corner/cases/observables/run-analyzers-on-an-observable.md'
'thehive/user-guides/analyst-corner/cases/cases-description/run-responders.md': 'thehive/user-guides/analyst-corner/cases/run-responders-on-a-case.md'
'thehive/user-guides/analyst-corner/tasks/preview-task-details/run-responders.md': 'thehive/user-guides/analyst-corner/tasks/run-responders-on-a-task.md'
'thehive/user-guides/analyst-corner/alerts/alerts-description/preview-alerts.md': 'thehive/user-guides/analyst-corner/alerts/about-alerts.md'
'thehive/user-guides/analyst-corner/cases/restore-visibility-case.md': 'thehive/user-guides/analyst-corner/cases/case-visibility/restore-visibility-case.md'
'thehive/user-guides/analyst-corner/cases/restrict-visibility-case.md': 'thehive/user-guides/analyst-corner/cases/case-visibility/restrict-visibility-case.md'
'thehive/user-guides/analyst-corner/cases/cases-description/actions.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases/cases-description/configure-pap-tlp-severity.md': 'thehive/user-guides/analyst-corner/cases/change-case-alert-classification-settings.md'
'thehive/user-guides/analyst-corner/cases/cases-description/general.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/analyst-corner/cases/cases-description/preview-cases.md': 'thehive/user-guides/analyst-corner/cases/about-cases.md'
'thehive/user-guides/organization/configure-organization/manage-functions/revoke-a-function.md': 'thehive/user-guides/organization/configure-organization/manage-functions/invoke-a-function.md'
'thehive/user-guides/analyst-corner/cases/change-case-classification-settings.md': 'thehive/user-guides/analyst-corner/cases/change-case-alert-classification-settings.md'
'thehive/user-guides/analyst-corner/authentication.md': 'thehive/overview/index.md'
'thehive/user-guides/analyst-corner/contacting-support.md': 'thehive/overview/index.md'
'thehive/user-guides/analyst-corner/getting-started.md': 'thehive/overview/index.md'
'thehive/user-guides/analyst-corner/introduction.md': 'thehive/overview/index.md'
'thehive/user-guides/analyst-corner/sign-in-as-an-admin.md': 'thehive/overview/index.md'
'thehive/administration/analyzers-templates.md': 'thehive/administration/analyzer-templates/about-analyzer-templates.md'
'thehive/administration/branding.md': 'thehive/administration/customize-thehive-branding.md'
'thehive/administration/first-start.md': 'thehive/administration/perform-initial-setup-as-admin.md'
'thehive/administration/ldap-server.md': 'thehive/administration/ldap/configure-ldap-server.md'
'thehive/administration/license.md': 'thehive/installation/licenses/license.md'
'thehive/administration/smtp.md': 'thehive/administration/smtp/configure-smtp-server.md'
'thehive/installation/activate-license.md': 'thehive/installation/licenses/license.md'
'thehive/user-guides/key-performance-indicators/hide-key-performance-indicators.md': 'thehive/user-guides/organization/configure-organization/manage-ui-configuration/hide-key-performance-indicators.md'
'thehive/user-guides/organization/configure-organization/manage-ui-configuration/about-ui-configuration.md': 'thehive/user-guides/organization/configure-organization/manage-ui-configuration/ui-configuration-settings.md'
'thehive/user-guides/organization/ui-configuration.md': 'thehive/user-guides/organization/configure-organization/manage-ui-configuration/ui-configuration-settings.md'
'cortex/installation-and-configuration/docker.md': 'cortex/installation-and-configuration/parameters-docker.md'
'thehive/download/archives.md': 'thehive/installation/installation-methods.md'
'thehive/download/index.md': 'thehive/installation/installation-methods.md'
'thehive/installation/automated-installation-script.md': 'thehive/installation/automated-installation-script-linux.md'
'thehive/installation/step-by-step-installation-guide.md': 'thehive/installation/installation-guide-linux-standalone-server.md'
'thehive/user-guides/analyst-corner/about-views.md': 'thehive/user-guides/analyst-corner/views/about-views.md'
'thehive/operations/backup-restore/backup/docker-compose.md': 'thehive/operations/backup-restore/backup/cold-backup/docker-compose.md'
'thehive/operations/backup-restore/backup/physical-server.md': 'thehive/operations/backup-restore/backup/cold-backup/physical-server.md'
'thehive/operations/backup-restore/backup/virtual-server.md': 'thehive/operations/backup-restore/backup/cold-backup/virtual-server.md'
'thehive/operations/backup-restore/backup/hot-backup.md': 'thehive/operations/backup-restore/backup/hot-backup/hot-backup-standalone-server.md'
'thehive/operations/backup-restore/backup/cloud.md': 'thehive/operations/backup-restore/backup/cold-backup/virtual-server.md'
'thehive/operations/backup-restore/overview.md': 'thehive/operations/backup-restore/cold-hot-backup-restore.md'
'thehive/operations/backup-restore/restore/docker-compose.md': 'thehive/operations/backup-restore/restore/cold-restore/docker-compose.md'
'thehive/operations/backup-restore/restore/physical-server.md': 'thehive/operations/backup-restore/restore/cold-restore/physical-server.md'
'thehive/operations/backup-restore/restore/virtual-server.md': 'thehive/operations/backup-restore/restore/cold-restore/virtual-server.md'
'thehive/operations/backup-restore/restore/restore-hot-backup.md': 'thehive/operations/backup-restore/restore/hot-restore/restore-hot-backup-standalone-server.md'
'thehive/operations/backup-restore/restore/cloud.md': 'thehive/operations/backup-restore/restore/cold-restore/virtual-server.md'
'thehive/user-guides/analyst-corner/cases/comment-on-case-alert.md': 'thehive/user-guides/analyst-corner/cases/case-comments/comment-on-case.md'
'thehive/administration/authentication/ssl.md': 'thehive/configuration/ssl/configure-ssl-jvm.md'
'thehive/configuration/ssl.md': 'thehive/configuration/ssl/configure-ssl-jvm.md'
'thehive/configuration/proxy.md': 'thehive/configuration/proxy-settings.md'
'thehive/configuration/service.md': 'thehive/configuration/update-service-configuration.md'
'thehive/configuration/connectors.md': 'thehive/configuration/turn-off-cortex-connector.md'
'thehive/configuration/database.md': 'thehive/configuration/configure-authentication-cassandra-elasticsearch.md'
'thehive/configuration/file-storage.md': 'thehive/installation/installation-guide-linux-standalone-server.md'
'thehive/configuration/gdpr.md': 'thehive/configuration/enable-gdpr.md'
'thehive/configuration/logs.md': 'thehive/configuration/update-log-configuration.md'
'thehive/configuration/secret.md': 'thehive/installation/installation-guide-linux-standalone-server.md'
'thehive/operations/minio-cluster.md': 'thehive/installation/deploying-a-cluster.md'
'resources/demo.md': 'resources/vm-demo.md'
'resources/howto-vm-demo.md': 'resources/vm-demo.md'
'thehive/user-guides/analyst-corner/cases/comment-on-case.md': 'thehive/user-guides/analyst-corner/cases/case-comments/comment-on-case.md'
extra:
generator: false
social:
- icon: fontawesome/brands/linkedin
link: "https://www.linkedin.com/company/strangebee"
- icon: fontawesome/brands/twitter
link: "https://twitter.com/StrangeBee"
- icon: fontawesome/brands/mastodon
link: "https://infosec.exchange/@Strangebee"
- icon: fontawesome/brands/discord
link: "https://chat.thehive-project.org"
- icon: fontawesome/brands/youtube
link: "https://www.youtube.com/channel/UCUmojqcxiG_LUbe62pR2Igg"
certificates:
- logo: '/assets/images/certificates/aicpa_soc.png'
name: "AICPA SOC certification"
header:
logo: '/assets/images/StrangeBee_Landscape.svg'
footer:
logo: '/assets/images/StrangeBee_Footer.svg'
text: 'Empowering incident responders worldwide'
groups:
- name: "Company"
links:
- text: "About us"
url: 'https://strangebee.com/about-strangebee/'
- text: "Services"
url: 'https://strangebee.com/services-by-strangebee/'
- text: "Contact us"
url: 'https://strangebee.com/contact-strangebee/'
- name: "Products"
links:
- text: "Request a demo"
url: 'https://strangebee.com/thehive-demo/'
- text: "Try TheHive"
tag: 'On-prem'
url: 'https://strangebee.com/try-thehive/'
- text: "Try TheHive Cloud Platform"
tag: 'SaaS'
url: 'https://strangebee.com/try-thehive-cloud-platform/'
- name: "Resources"
links:
- text: "Blog"
url: 'https://strangebee.com/blog/'
- text: "Success stories"
url: 'https://strangebee.com/success-stories/'
- text: "Third-party software licenses"
url: '/thehive/third-party-software-licenses/'
analytics:
provider: google
property: G-W7W9113BRP
markdown_extensions:
- toc:
permalink: "#"
title: On this page
toc_depth: 2
- footnotes
- attr_list
- md_in_html
- def_list
- codehilite
- admonition
- pymdownx.critic
- pymdownx.tabbed:
alternate_style: true
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- pymdownx.details
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.emoji:
emoji_index: !!python/name:material.extensions.emoji.twemoji
emoji_generator: !!python/name:material.extensions.emoji.to_svg
nav:
- Home: index.md
- TheHive:
- 'Overview': thehive/overview/index.md
- 'Installation':
- 'Installation Methods': thehive/installation/installation-methods.md
- 'Requirements':
- 'System Requirements': thehive/installation/system-requirements.md
- 'Software Requirements': thehive/installation/software-requirements.md
- 'Package Repository': thehive/installation/thehive-packages.md
- 'Install with Packages': thehive/installation/installation-guide-linux-standalone-server.md
- 'One-Command Install': thehive/installation/automated-installation-script-linux.md
- 'Deploy with Docker': thehive/installation/docker.md
- 'Deploy on Kubernetes': thehive/installation/kubernetes.md
- 'Set Up a Cluster with Packages': thehive/installation/deploying-a-cluster.md
- 'Licenses':
- 'About Licenses': thehive/installation/licenses/about-licenses.md
- 'Request a Community License': thehive/installation/licenses/request-a-community-license.md
- 'Activate or Update a License': thehive/installation/licenses/license.md
- 'Version Upgrades':
- 'Upgrade from Version 5.x': thehive/installation/upgrade-from-5.x.md
- 'Upgrade from Version 4.x': thehive/installation/upgrade-from-4.x.md
- 'Migration from TheHive 3.x': thehive/installation/migration.md
- 'Configuration':
- 'Cortex Integration': thehive/configuration/turn-off-cortex-connector.md
- 'MISP Integration': thehive/configuration/turn-off-misp-connector.md
- 'Service Configuration': thehive/configuration/update-service-configuration.md
- 'Database and Index Authentication': thehive/configuration/configure-authentication-cassandra-elasticsearch.md
- 'Database and Index SSL': thehive/configuration/configure-ssl-cassandra-elasticsearch.md
- 'Akka (Version 5.3 and Earlier)': thehive/configuration/akka.md
- 'Pekko (Version 5.4+)': thehive/configuration/pekko.md
- 'Docker Entrypoint Settings': thehive/configuration/thehive-docker-entrypoint-settings.md
- 'JVM SSL Trust': thehive/configuration/ssl/configure-ssl-jvm.md
- 'HTTPS via Reverse Proxy': thehive/configuration/ssl/configure-https-reverse-proxy.md
- 'Outbound Proxy Settings': thehive/configuration/proxy-settings.md
- 'Log Configuration': thehive/configuration/update-log-configuration.md
- 'GDPR Compliance Feature': thehive/configuration/enable-gdpr.md
- 'Operations':
- 'Cassandra Cluster Operations': thehive/operations/cassandra-cluster.md
- 'Cassandra Security Operations': thehive/operations/cassandra-security.md
- 'Backup & Restore Operations':
- 'Cold vs. Hot Backups and Restores': thehive/operations/backup-restore/cold-hot-backup-restore.md
- 'Backup Process':
- 'Cold Backup':
- 'Physical Server': thehive/operations/backup-restore/backup/cold-backup/physical-server.md
- 'Virtual Server': thehive/operations/backup-restore/backup/cold-backup/virtual-server.md
- 'Docker Compose': thehive/operations/backup-restore/backup/cold-backup/docker-compose.md
- 'Hot Backup':
- 'Standalone Server': thehive/operations/backup-restore/backup/hot-backup/hot-backup-standalone-server.md
- 'Cluster': thehive/operations/backup-restore/backup/hot-backup/hot-backup-cluster.md
- 'Restore Process':
- 'Cold Restore':
- 'Physical Server': thehive/operations/backup-restore/restore/cold-restore/physical-server.md
- 'Virtual Server': thehive/operations/backup-restore/restore/cold-restore/virtual-server.md
- 'Docker Compose': thehive/operations/backup-restore/restore/cold-restore/docker-compose.md
- 'Hot Restore':
- 'Standalone Server': thehive/operations/backup-restore/restore/hot-restore/restore-hot-backup-standalone-server.md
- 'Cluster': thehive/operations/backup-restore/restore/hot-restore/restore-hot-backup-cluster.md
- 'End of APT and YUM repositories':
- 'Deprecation Notice': thehive/operations/apt-yum-repositories-end/apt-yum-deprecation-notice.md
- 'Switch to Manual Download and Installation': thehive/operations/apt-yum-repositories-end/switch-to-manual-download-installation-thehive.md
- 'Index Management': thehive/operations/change-index.md
- 'Troubleshooting Guide': thehive/operations/troubleshooting.md
- 'Set Up Monitoring': thehive/operations/monitoring.md
- 'Admin Guides':
- 'First Start': thehive/administration/perform-initial-setup-as-admin.md
- 'Organizations':
- 'About Organizations': thehive/administration/organizations/about-organizations.md
- 'Organizations Sharing Rules': thehive/administration/organizations/about-organizations-sharing-rules.md
- 'Create an Organization': thehive/administration/organizations/create-an-organization.md
- 'Link an Organization': thehive/administration/organizations/link-an-organization.md
- 'Lock an Organization': thehive/administration/organizations/lock-an-organization.md
- 'User Accounts':
- 'About User Accounts': thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md
- 'Create a User Account': thehive/user-guides/organization/configure-organization/manage-user-accounts/create-a-user-account.md
- 'Manage User Accounts': thehive/user-guides/organization/configure-organization/manage-user-accounts/manage-user-accounts.md
- 'Add or Remove An Existing User Account from an Organization': thehive/administration/organizations/add-remove-an-existing-user-account-from-an-organization.md
- 'Modify the Default Organization for a User Account': thehive/administration/organizations/modify-default-organization-user-account.md
- 'Delete a User Account': thehive/user-guides/organization/configure-organization/manage-user-accounts/delete-a-user-account.md
- 'Lock a User Account': thehive/user-guides/organization/configure-organization/manage-user-accounts/lock-a-user-account.md
- 'Export a List of User Accounts': thehive/user-guides/organization/configure-organization/manage-user-accounts/export-list-user-accounts.md
- 'Platform Management':
- 'Customize Branding': thehive/administration/customize-thehive-branding.md
- 'Licenses':
- 'About Licenses': thehive/installation/licenses/about-licenses.md
- 'Request a Community License': thehive/installation/licenses/request-a-community-license.md
- 'Activate or Update a License': thehive/installation/licenses/license.md
- 'Cortex Integration':
- 'About Cortex': thehive/administration/cortex/about-cortex.md
- 'Add a Cortex Server': thehive/administration/cortex/add-a-cortex-server.md
- 'Remove a Cortex Server': thehive/administration/cortex/remove-a-cortex-server.md
- 'MISP Integration':
- 'About MISP Integration': thehive/administration/misp-integration/about-misp-integration.md
- 'Connect a MISP Server': thehive/administration/misp-integration/connect-a-misp-server.md
- 'Delete a MISP Server Connection': thehive/administration/misp-integration/delete-a-misp-server.md
- 'Email Intake Connectors':
- 'About Email Intake Connectors': thehive/administration/email-intake-connector/about-email-intake-connectors.md
- 'Connect a Mailbox': thehive/administration/email-intake-connector/connect-a-mailbox.md
- 'Manually Fetch Emails': thehive/administration/email-intake-connector/fetch-emails.md
- 'Delete a Mailbox Connection': thehive/administration/email-intake-connector/delete-a-mailbox-connection.md
- 'Authentication Settings':
- 'Configure Authentication': thehive/administration/authentication/configure-authentication.md
- 'Configure Providers':
- 'Local': thehive/administration/authentication/local.md
- 'Active Directory (AD)': thehive/administration/authentication/ad.md
- 'LDAP': thehive/administration/authentication/ldap.md
- 'OAuth 2.0': thehive/administration/authentication/oauth2.md
- 'SAML': thehive/administration/authentication/saml.md
- 'OpenID': thehive/administration/authentication/openid.md
- 'Configure SMTP':
- 'About SMTP': thehive/administration/smtp/about-smtp.md
- 'Configure an SMTP Server': thehive/administration/smtp/configure-smtp-server.md
- 'Configure LDAP':
- 'About LDAP': thehive/administration/ldap/about-ldap.md
- 'Configure an LDAP Server': thehive/administration/ldap/configure-ldap-server.md
- 'Add a Global Endpoint': thehive/administration/add-a-global-endpoint.md
- 'Entities Management':
- 'Profiles':
- 'About Profiles': thehive/administration/profiles/about-profiles.md
- 'Create a Profile': thehive/administration/profiles/create-a-profile.md
- 'Add or Remove Permissions from a Profile': thehive/administration/profiles/add-remove-permissions-from-a-profile.md
- 'Delete a Profile': thehive/administration/profiles/delete-a-profile.md
- 'Custom Fields':
- 'About Custom Fields': thehive/administration/custom-fields/about-custom-fields.md
- 'Create a Custom Field': thehive/administration/custom-fields/create-a-custom-field.md
- 'Manage Custom Fields': thehive/administration/custom-fields/manage-a-custom-field.md
- 'Delete a Custom Field': thehive/administration/custom-fields/delete-a-custom-field.md
- 'Observable Types':
- 'Create an Observable Type': thehive/administration/observable-types/create-an-observable-type.md
- 'Set an Observable Type as Case-Insensitive': thehive/administration/observable-types/set-an-observable-type-case-insensitive.md
- 'Delete an Observable Type': thehive/administration/observable-types/delete-an-observable-type.md
- 'Statuses':
- 'About Statuses': thehive/administration/status/about-statuses.md
- 'Create a Status': thehive/administration/status/create-a-status.md
- 'Change a Status Visibility': thehive/administration/status/change-visibility-of-a-status.md
- 'Change a Color Visibility': thehive/administration/status/change-color-of-a-status.md
- 'Delete a Status': thehive/administration/status/delete-a-status.md
- 'Analyzer Templates':
- 'About Analyzer Templates': thehive/administration/analyzer-templates/about-analyzer-templates.md
- 'Import Analyzer Templates': thehive/administration/analyzer-templates/import-analyzer-templates.md
- 'Customize an Analyzer Template': thehive/administration/analyzer-templates/customize-an-analyzer-template.md
- 'Taxonomies':
- 'About Taxonomies': thehive/administration/taxonomies/about-taxonomies.md
- 'Add a Custom Taxonomy': thehive/administration/taxonomies/add-a-custom-taxonomy.md
- 'Update MISP Taxonomies': thehive/administration/taxonomies/update-misp-taxonomies.md
- 'Activate or Deactivate a Taxonomy': thehive/administration/taxonomies/activate-deactivate-a-taxonomy.md
- 'Delete a Taxonomy': thehive/administration/taxonomies/delete-a-taxonomy.md
- 'TTPs':
- 'About TTPs': thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md
- 'Add a Catalog': thehive/administration/ttps/add-a-catalog.md
- 'Update a Catalog': thehive/administration/ttps/update-a-catalog.md
- 'Remove a Catalog': thehive/administration/ttps/remove-a-catalog.md
- 'View Techniques': thehive/administration/ttps/view-techniques-in-a-catalog.md
- 'Setting up TheHive Portal':
- 'About TheHive Portal': thehive/administration/thehive-portal/about-thehive-portal.md
- 'Tutorial: Set Up TheHive Portal Access': thehive/administration/thehive-portal/set-up-thehive-portal-access.md
- 'How To':
- 'Fail2ban Configuration': thehive/how-to/fail2ban.md
- 'Splunk Integration Guide': thehive/how-to/splunk-integration.md
- 'User Guides':
- 'Account Management':
- 'Manage Your Account Settings': thehive/user-guides/manage-user-settings.md
- 'Manage Your Password': thehive/user-guides/manage-password.md
- 'Change Your Account Theme': thehive/user-guides/change-account-theme.md
- 'View Your Account Profile and Permissions': thehive/user-guides/view-permissions.md
- 'Switch Between Organizations': thehive/user-guides/switch-organizations.md
- 'Log Out of Your Account': thehive/user-guides/log-out.md
- 'Organization Admin':
- 'User Accounts':
- 'About User Accounts': thehive/user-guides/organization/configure-organization/manage-user-accounts/about-user-accounts.md
- 'Create a User Account': thehive/user-guides/organization/configure-organization/manage-user-accounts/create-a-user-account.md
- 'Manage User Accounts': thehive/user-guides/organization/configure-organization/manage-user-accounts/manage-user-accounts.md
- 'Add or Remove An Existing User Account from an Organization': thehive/administration/organizations/add-remove-an-existing-user-account-from-an-organization.md
- 'Lock a User Account': thehive/user-guides/organization/configure-organization/manage-user-accounts/lock-a-user-account.md
- 'Export a List of User Accounts': thehive/user-guides/organization/configure-organization/manage-user-accounts/export-list-user-accounts.md
- 'Templates':
- 'Case Templates':
- 'About Case Templates': thehive/user-guides/organization/configure-organization/manage-templates/case-templates/about-case-templates.md
- 'Create a Case Template': thehive/user-guides/organization/configure-organization/manage-templates/case-templates/create-a-case-template.md
- 'Delete a Case Template': thehive/user-guides/organization/configure-organization/manage-templates/case-templates/delete-a-case-template.md
- 'Export or Import a Case Template': thehive/user-guides/organization/configure-organization/manage-templates/case-templates/export-import-a-case-template.md
- 'Case Page Templates':
- 'About Page Templates': thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/about-case-page-templates.md
- 'Create a Page Template': thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/create-a-case-page-template.md
- 'Delete a Page Template': thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/delete-a-case-page-template.md
- 'Export a Page Template': thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/export-a-case-page-template.md
- 'Import a Page Template': thehive/user-guides/organization/configure-organization/manage-templates/case-page-templates/import-a-case-page-template.md
- 'Case Report Templates':
- 'About Case Report Templates': thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/about-case-report-templates.md
- 'Widgets': thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/widgets-case-report-templates.md
- 'Create a Case Report Template': thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/create-a-case-report-template.md
- 'Add or Remove Widgets': thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/add-remove-widgets-case-report-template.md
- 'Delete a Case Report Template': thehive/user-guides/organization/configure-organization/manage-templates/case-report-templates/delete-a-case-report-template.md
- 'Custom Tags':
- 'About Custom Tags': thehive/user-guides/organization/configure-organization/manage-custom-tags/about-custom-tags.md
- 'Change the Color of a Custom Tag': thehive/user-guides/organization/configure-organization/manage-custom-tags/change-the-color-of-a-custom-tag.md
- 'Rename a Custom Tag': thehive/user-guides/organization/configure-organization/manage-custom-tags/rename-a-custom-tag.md
- 'Delete a Custom Tag': thehive/user-guides/organization/configure-organization/manage-custom-tags/delete-a-custom-tag.md
- 'View Custom Tag Statistics': thehive/user-guides/organization/configure-organization/manage-custom-tags/view-custom-tag-statistics.md
- 'UI Configuration':
- 'UI Configuration Settings': thehive/user-guides/organization/configure-organization/manage-ui-configuration/ui-configuration-settings.md
- 'Prevent Users from Creating Empty Cases': thehive/user-guides/organization/configure-organization/manage-ui-configuration/prevent-creating-empty-cases.md
- 'Prevent Users from Merging Alerts into Closed Cases': thehive/user-guides/organization/configure-organization/manage-ui-configuration/prevent-merging-alerts-into-closed-cases.md
- 'Select Similar Cases and Alerts Filters': thehive/user-guides/organization/configure-organization/manage-ui-configuration/select-similar-cases-alerts-filters.md
- 'Pause Dashboard Refresh': thehive/user-guides/organization/configure-organization/manage-ui-configuration/pause-dashboard-refresh.md
- 'Remove the All Periods Option in a Dashboard': thehive/user-guides/organization/configure-organization/manage-ui-configuration/remove-all-periods-option.md
- 'Hide KPIs': thehive/user-guides/organization/configure-organization/manage-ui-configuration/hide-key-performance-indicators.md
- 'Allow Custom Link Schemes': thehive/user-guides/organization/configure-organization/manage-ui-configuration/allow-custom-link-schemes.md
- 'Notifications & Endpoints':
- 'About Notifications': thehive/user-guides/organization/configure-organization/manage-notifications/about-notifications.md
- 'Create a Notification': thehive/user-guides/organization/configure-organization/manage-notifications/create-a-notification.md
- 'Turn Off a Notification': thehive/user-guides/organization/configure-organization/manage-notifications/turn-off-a-notification.md
- 'Delete a Notification': thehive/user-guides/organization/configure-organization/manage-notifications/delete-a-notification.md
- 'Variable Usage Examples': thehive/user-guides/organization/configure-organization/manage-notifications/variable-usage-examples.md
- 'Notifier Configuration':
- 'EmailToUser': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/email-to-users.md
- 'EmailToAddr': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/email-to-addr.md
- 'HttpRequest': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/http-request.md
- 'Mattermost': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/mattermost.md
- 'Slack': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/slack.md
- 'Teams': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/teams.md
- 'Webhook': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/webhook.md
- 'Kafka': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/kafka.md
- 'Redis': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/redis.md
- 'RunAnalyzer': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/analyzers.md
- 'RunResponder': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/responders.md
- 'Function': thehive/user-guides/organization/configure-organization/manage-notifications/notifiers/function.md
- 'Filtered Event Setup':
- 'Write a FilteredEvent Trigger': thehive/user-guides/organization/configure-organization/manage-notifications/write-filtered-event-trigger.md
- 'Operators': thehive/user-guides/organization/configure-organization/manage-notifications/filtered-event-trigger-operators.md
- 'Endpoints':
- 'About Endpoints': thehive/user-guides/organization/configure-organization/manage-endpoints/about-endpoints.md
- 'Add a Local HttpRequest Endpoint': thehive/user-guides/organization/configure-organization/manage-endpoints/add-http-request-endpoint.md
- 'Add a Local Mattermost Endpoint': thehive/user-guides/organization/configure-organization/manage-endpoints/add-mattermost-endpoint.md
- 'Add a Local Slack Endpoint': thehive/user-guides/organization/configure-organization/manage-endpoints/add-slack-endpoint.md
- 'Add a Local Teams Endpoint': thehive/user-guides/organization/configure-organization/manage-endpoints/add-teams-endpoint.md
- 'Add a Local Webhook Endpoint': thehive/user-guides/organization/configure-organization/manage-endpoints/add-webhook-endpoint.md
- 'Functions':
- 'About Functions': thehive/user-guides/organization/configure-organization/manage-functions/about-functions.md
- 'Create a Function': thehive/user-guides/organization/configure-organization/manage-functions/create-a-function.md
- 'Delete a Function': thehive/user-guides/organization/configure-organization/manage-functions/delete-a-function.md
- 'Invoke a Function': thehive/user-guides/organization/configure-organization/manage-functions/invoke-a-function.md
- 'Functions Objects': thehive/user-guides/organization/configure-organization/manage-functions/functions-objects.md
- 'Alert Feeders':
- 'About Alert Feeders': thehive/user-guides/organization/configure-organization/manage-feeders/about-feeders.md
- 'Create an Alert Feeder': thehive/user-guides/organization/configure-organization/manage-feeders/create-a-feeder.md
- 'Turn Off an Alert Feeder': thehive/user-guides/organization/configure-organization/manage-feeders/turn-off-a-feeder.md
- 'Delete an Alert Feeder': thehive/user-guides/organization/configure-organization/manage-feeders/delete-a-feeder.md
- 'Attachments':
- 'About Attachments': thehive/user-guides/analyst-corner/cases/attachments/about-attachments.md
- 'Add an Attachment': thehive/user-guides/organization/configure-organization/manage-attachments/add-an-attachment-organization.md
- 'Remove an Attachment': thehive/user-guides/organization/configure-organization/manage-attachments/remove-an-attachment-organization.md
- 'Download an Attachment': thehive/user-guides/organization/configure-organization/manage-attachments/download-an-attachment-organization.md
- 'Share an Attachment': thehive/user-guides/organization/configure-organization/manage-attachments/share-an-attachment-organization.md
- 'Automation Hacks':
- 'Tutorial: Automate Tracking of Pending Alerts': thehive/user-guides/automate-tracking-pending-alerts.md
- 'Tutorial: Automate Monitoring of Tasks Approaching Their Due Date': thehive/user-guides/automate-monitoring-tasks-approaching-due-date.md
- 'Tutorial: Automate Extraction of Observables from Emails': thehive/user-guides/automate-extraction-observables-from-emails.md
- 'Analyst Corner':
- 'Alerts Management':
- 'About Alerts': thehive/user-guides/analyst-corner/alerts/about-alerts.md
- 'Search for Alerts':
- 'Find an Alert': thehive/user-guides/analyst-corner/alerts/search-for-alerts/find-an-alert.md
- 'Overview of Search Methods for Alerts': thehive/user-guides/analyst-corner/alerts/search-for-alerts/overview-search-methods-alert.md
- 'Create a Case from an Alert': thehive/user-guides/analyst-corner/alerts/create-a-case-from-an-alert.md
- 'Add an Alert to an Existing Case': thehive/user-guides/analyst-corner/alerts/add-an-alert-to-an-existing-case.md
- 'Unlink an Alert and a Case': thehive/user-guides/analyst-corner/alerts/unlink-alert-case.md
- 'Change an Alert Status': thehive/user-guides/analyst-corner/alerts/change-status-alert.md
- 'Change Classification Settings': thehive/user-guides/analyst-corner/cases/change-case-alert-classification-settings.md
- 'Enrich Alert Details': thehive/user-guides/analyst-corner/alerts/enrich-alert-details.md
- 'Ignore Alert Updates from MISP': thehive/user-guides/analyst-corner/alerts/ignore-alert-updates-misp.md
- 'Start Working on an Alert': thehive/user-guides/analyst-corner/alerts/start-investigating-an-alert.md
- 'Assign an Alert': thehive/user-guides/analyst-corner/alerts/assign-an-alert.md
- 'Run a Function on a Case or Alert': thehive/user-guides/organization/configure-organization/manage-functions/run-a-function-case-alert.md
- 'Run Responders and Review Reports for an Alert': thehive/user-guides/analyst-corner/alerts/run-responders-on-an-alert.md
- 'Find Similar Alerts or Cases': thehive/user-guides/analyst-corner/cases/find-similar-alerts-cases.md
- 'Export a List of Alerts': thehive/user-guides/analyst-corner/alerts/export-list-of-alerts.md
- 'Observables' :
- 'About Observables' : thehive/user-guides/analyst-corner/cases/observables/about-observables.md
- 'Add an Observable' : thehive/user-guides/analyst-corner/cases/observables/add-an-observable.md
- 'Update the Status of an Observable' : thehive/user-guides/analyst-corner/cases/observables/update-an-observable-status.md
- 'Edit Multiple Observables' : thehive/user-guides/analyst-corner/cases/observables/edit-multiple-observables.md
- 'Exclude an Observable From Similarity Checks' : thehive/user-guides/analyst-corner/cases/observables/exclude-an-observable-from-similarity-checks.md
- 'Delete an Observable' : thehive/user-guides/analyst-corner/cases/observables/delete-an-observable.md
- 'Find an Observable': thehive/user-guides/analyst-corner/cases/search-for-cases/find-an-observable.md
- 'Find a Job': thehive/user-guides/analyst-corner/cases/search-for-cases/find-a-job.md
- 'Share an Observable with Internal Organizations' : thehive/user-guides/analyst-corner/cases/share-an-observable.md
- 'Export Data from an Observable' : thehive/user-guides/analyst-corner/cases/observables/export-data-observables.md
- 'Pin an Observable' : thehive/user-guides/analyst-corner/cases/observables/pin-an-observable.md
- 'Run Analyzers and Review Reports for an Observable' : thehive/user-guides/analyst-corner/cases/observables/run-analyzers-on-an-observable.md
- 'Import Observables from Analyzer Reports' : thehive/user-guides/analyst-corner/cases/observables/import-observables-from-analyzer-reports.md
- 'Run Responders and Review Reports for an Observable' : thehive/user-guides/analyst-corner/cases/observables/run-responders-on-an-observable.md
- 'TTPs':
- 'About TTPs': thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md
- 'Export TTPs': thehive/user-guides/analyst-corner/cases/ttps/export-ttps.md
- 'Attachments':
- 'About Attachments': thehive/user-guides/analyst-corner/cases/attachments/about-attachments.md
- 'Add an Attachment': thehive/user-guides/analyst-corner/cases/attachments/add-an-attachment-case-alert.md
- 'Remove an Attachment': thehive/user-guides/analyst-corner/cases/attachments/remove-an-attachment-case-alert.md
- 'Download an Attachment': thehive/user-guides/analyst-corner/cases/attachments/download-an-attachment-case-alert.md
- 'Share an Attachment': thehive/user-guides/analyst-corner/cases/attachments/share-an-attachment-case-alert.md
- 'Tags':
- 'About Tags': thehive/user-guides/analyst-corner/cases/tags/about-tags.md
- 'Add or Remove Tags': thehive/user-guides/analyst-corner/cases/tags/add-remove-tags.md
- 'Custom Fields':
- 'Add Custom Fields': thehive/user-guides/analyst-corner/cases/custom-fields/add-custom-fields.md
- 'Remove Custom Fields': thehive/user-guides/analyst-corner/cases/custom-fields/remove-custom-fields.md
- 'Enter Values in Custom Fields': thehive/user-guides/analyst-corner/cases/custom-fields/enter-values-in-custom-fields.md
- 'About Audit Logs': thehive/user-guides/organization/about-audit-logs.md
- 'Comments':
- 'Comment on Alerts': thehive/user-guides/analyst-corner/alerts/comment-on-alert.md
- 'Share a Comment': thehive/user-guides/analyst-corner/cases/case-comments/share-a-comment.md
- 'Close an Alert': thehive/user-guides/analyst-corner/alerts/close-an-alert.md
- 'Reopen an Alert': thehive/user-guides/analyst-corner/alerts/reopen-an-alert.md
- 'Cases Management':
- 'About Cases': thehive/user-guides/analyst-corner/cases/about-cases.md
- 'Search for Cases':
- 'Find a Case': thehive/user-guides/analyst-corner/cases/search-for-cases/find-a-case.md
- 'Overview of Search Methods for Cases': thehive/user-guides/analyst-corner/cases/search-for-cases/overview-search-methods-case.md
- 'Create a Case': thehive/user-guides/analyst-corner/cases/create-a-new-case.md
- 'Apply a Case Template': thehive/user-guides/analyst-corner/cases/apply-a-case-template.md
- 'Find Similar Alerts or Cases': thehive/user-guides/analyst-corner/cases/find-similar-alerts-cases.md
- 'Observables' :
- 'About Observables' : thehive/user-guides/analyst-corner/cases/observables/about-observables.md
- 'Add an Observable' : thehive/user-guides/analyst-corner/cases/observables/add-an-observable.md
- 'Update the Status of an Observable' : thehive/user-guides/analyst-corner/cases/observables/update-an-observable-status.md
- 'Edit Multiple Observables' : thehive/user-guides/analyst-corner/cases/observables/edit-multiple-observables.md
- 'Exclude an Observable From Similarity Checks' : thehive/user-guides/analyst-corner/cases/observables/exclude-an-observable-from-similarity-checks.md
- 'Delete an Observable' : thehive/user-guides/analyst-corner/cases/observables/delete-an-observable.md
- 'Find an Observable': thehive/user-guides/analyst-corner/cases/search-for-cases/find-an-observable.md
- 'Find a Job': thehive/user-guides/analyst-corner/cases/search-for-cases/find-a-job.md
- 'Share an Observable with Internal Organizations' : thehive/user-guides/analyst-corner/cases/share-an-observable.md
- 'Export Data from an Observable' : thehive/user-guides/analyst-corner/cases/observables/export-data-observables.md
- 'Pin an Observable' : thehive/user-guides/analyst-corner/cases/observables/pin-an-observable.md
- 'Run Analyzers on an Observable' : thehive/user-guides/analyst-corner/cases/observables/run-analyzers-on-an-observable.md
- 'Import Observables from Analyzer Reports' : thehive/user-guides/analyst-corner/cases/observables/import-observables-from-analyzer-reports.md
- 'Run Responders and Review Reports for an Observable' : thehive/user-guides/analyst-corner/cases/observables/run-responders-on-an-observable.md
- 'Custom Fields':
- 'Add Custom Fields': thehive/user-guides/analyst-corner/cases/custom-fields/add-custom-fields.md
- 'Remove Custom Fields': thehive/user-guides/analyst-corner/cases/custom-fields/remove-custom-fields.md
- 'Enter Values in Custom Fields': thehive/user-guides/analyst-corner/cases/custom-fields/enter-values-in-custom-fields.md
- 'Tags':
- 'About Tags': thehive/user-guides/analyst-corner/cases/tags/about-tags.md
- 'Add or Remove Tags': thehive/user-guides/analyst-corner/cases/tags/add-remove-tags.md
- 'TTPs':
- 'About TTPs': thehive/user-guides/analyst-corner/cases/ttps/about-ttps.md
- 'Add TTPs': thehive/user-guides/analyst-corner/cases/ttps/add-ttps.md
- 'Export TTPs': thehive/user-guides/analyst-corner/cases/ttps/export-ttps.md
- 'Remove TTPs': thehive/user-guides/analyst-corner/cases/ttps/remove-ttps.md
- 'Attachments':
- 'About Attachments': thehive/user-guides/analyst-corner/cases/attachments/about-attachments.md
- 'Add an Attachment': thehive/user-guides/analyst-corner/cases/attachments/add-an-attachment-case-alert.md
- 'Remove an Attachment': thehive/user-guides/analyst-corner/cases/attachments/remove-an-attachment-case-alert.md
- 'Download an Attachment': thehive/user-guides/analyst-corner/cases/attachments/download-an-attachment-case-alert.md
- 'Share an Attachment': thehive/user-guides/analyst-corner/cases/attachments/share-an-attachment-case-alert.md
- 'Remove External User Access to an Attachment': thehive/user-guides/analyst-corner/cases/case-thehive-portal/remove-case-attachment-access-thehive-portal.md
- 'Link Elements in Cases':
- 'Add a Link to a Case': thehive/user-guides/analyst-corner/cases/case-links/add-a-link-to-a-case.md
- 'Remove a Link from a Case': thehive/user-guides/analyst-corner/cases/case-links/remove-a-link-from-a-case.md
- 'View Links in a Case': thehive/user-guides/analyst-corner/cases/case-links/view-links-in-a-case.md
- 'Linked Alerts to Cases':
- 'View Alerts Linked to a Case': thehive/user-guides/analyst-corner/cases/view-alerts-linked-to-a-case.md
- 'Unlink an Alert and a Case': thehive/user-guides/analyst-corner/alerts/unlink-alert-case.md
- 'Comments':
- 'Comment on Cases': thehive/user-guides/analyst-corner/cases/case-comments/comment-on-case.md
- 'Share a Comment': thehive/user-guides/analyst-corner/cases/case-comments/share-a-comment.md
- 'Control Comment Access for External Users': thehive/user-guides/analyst-corner/cases/case-thehive-portal/control-case-comment-access-thehive-portal.md
- 'Change a Case Status': thehive/user-guides/analyst-corner/cases/change-status-case.md
- 'Change Classification Settings': thehive/user-guides/analyst-corner/cases/change-case-alert-classification-settings.md
- 'Flag a Case': thehive/user-guides/analyst-corner/cases/flag-a-case.md
- 'Add Tasks to a Case': thehive/user-guides/analyst-corner/cases/add-tasks-to-a-case.md
- 'Merge Cases': thehive/user-guides/analyst-corner/cases/merge-cases.md
- 'Run a Function on a Case or Alert': thehive/user-guides/organization/configure-organization/manage-functions/run-a-function-case-alert.md
- 'Run Responders and Review Reports for a Case': thehive/user-guides/analyst-corner/cases/run-responders-on-a-case.md
- 'Close a Case': thehive/user-guides/analyst-corner/cases/close-a-case.md
- 'Reopen a Case': thehive/user-guides/analyst-corner/cases/reopen-a-case.md
- 'Delete a Case': thehive/user-guides/analyst-corner/cases/delete-a-case.md
- 'Case Access Control':
- 'Share a Case with Internal Organizations' : thehive/user-guides/analyst-corner/cases/share-a-case.md
- 'Share a Case with External Users': thehive/user-guides/analyst-corner/cases/case-thehive-portal/share-case-external-users.md
- 'Revoke Case Access for External Users': thehive/user-guides/analyst-corner/cases/case-thehive-portal/revoke-case-access-external-users.md
- 'Restrict Case Visibility': thehive/user-guides/analyst-corner/cases/case-visibility/restrict-visibility-case.md
- 'Restore Case Visibility': thehive/user-guides/analyst-corner/cases/case-visibility/restore-visibility-case.md
- 'Case Timelines':
- 'About Case Timelines': thehive/user-guides/analyst-corner/cases/case-timelines/about-case-timelines.md
- 'Add a Custom Event': thehive/user-guides/analyst-corner/cases/case-timelines/add-custom-event-timeline.md
- 'View a Case Timeline': thehive/user-guides/analyst-corner/cases/case-timelines/view-case-timeline.md
- 'Export a Case Timeline': thehive/user-guides/analyst-corner/cases/case-timelines/export-case-timeline.md
- 'Delete a Case Timeline': thehive/user-guides/analyst-corner/cases/case-timelines/delete-custom-event-timeline.md
- 'Export Cases':
- 'Export a List of Cases': thehive/user-guides/analyst-corner/cases/export-list-of-cases.md
- 'Export an Archived Case': thehive/user-guides/analyst-corner/cases/export-an-archived-case.md
- 'Export a Case to MISP': thehive/user-guides/analyst-corner/cases/export-a-case-to-misp.md
- 'Case Pages':
- 'About Case Pages': thehive/user-guides/knowledge-base/about-case-pages.md
- 'Create a Page': thehive/user-guides/knowledge-base/create-a-case-page.md
- 'Delete a Page': thehive/user-guides/knowledge-base/delete-a-case-page.md
- 'Share a Page': thehive/user-guides/knowledge-base/share-a-case-page.md
- 'View a Page': thehive/user-guides/knowledge-base/view-a-case-page.md
- 'Case Reports':
- 'About Case Reports': thehive/user-guides/analyst-corner/cases/case-reports/about-case-reports.md
- 'Save and Download a Case Report': thehive/user-guides/analyst-corner/cases/case-reports/save-download-a-case-report.md
- 'About Audit Logs': thehive/user-guides/organization/about-audit-logs.md
- 'Tasks Management':
- 'Tasks':
- 'About Tasks': thehive/user-guides/analyst-corner/tasks/about-tasks.md
- 'Create a Task': thehive/user-guides/analyst-corner/tasks/create-a-task.md
- 'Start a Task': thehive/user-guides/analyst-corner/tasks/start-a-task.md
- 'Change a Task Status': thehive/user-guides/analyst-corner/tasks/change-task-status.md
- 'Manage Tasks': thehive/user-guides/analyst-corner/tasks/manage-a-task.md
- 'Export a List of Tasks': thehive/user-guides/analyst-corner/tasks/export-list-of-tasks.md
- 'Delete a Task': thehive/user-guides/analyst-corner/tasks/delete-a-task.md
- 'Search for Tasks':
- 'Find a Task': thehive/user-guides/analyst-corner/tasks/search-for-tasks/find-a-task.md
- 'Overview of Search Methods for Tasks': thehive/user-guides/analyst-corner/tasks/search-for-tasks/overview-search-methods-task.md
- 'Run Responders and Review Reports for a Task': thehive/user-guides/analyst-corner/tasks/run-responders-on-a-task.md
- 'Share a Task with Internal Organizations' : thehive/user-guides/analyst-corner/tasks/share-a-task.md
- 'Close a Task': thehive/user-guides/analyst-corner/tasks/close-a-task.md
- 'Task Logs':
- 'About Task Logs': thehive/user-guides/analyst-corner/tasks/about-task-logs.md
- 'Create a Task Log': thehive/user-guides/analyst-corner/tasks/create-a-task-log.md
- 'Delete a Task Log': thehive/user-guides/analyst-corner/tasks/delete-a-task-log.md
- 'Find a Task Log': thehive/user-guides/analyst-corner/tasks/search-for-tasks/find-a-task-log.md
- 'Run Responders and Review Reports for a Task Log': thehive/user-guides/analyst-corner/tasks/run-responders-on-a-task-log.md
- 'Dashboards':
- 'About Dashboards': thehive/user-guides/analyst-corner/dashboard/about-dashboards.md
- 'Widgets': thehive/user-guides/analyst-corner/dashboard/widgets-dashboards.md
- 'Create a Dashboard': thehive/user-guides/analyst-corner/dashboard/create-a-dashboard.md
- 'Add or Remove Widgets': thehive/user-guides/analyst-corner/dashboard/add-remove-widgets-dashboard.md
- 'Delete a Dashboard': thehive/user-guides/analyst-corner/dashboard/delete-a-dashboard.md
- 'Change Visibility of a Dashboard': thehive/user-guides/analyst-corner/dashboard/change-visibility-of-a-dashboard.md
- 'Adjust Dashboard Refresh Frequency': thehive/user-guides/analyst-corner/dashboard/adjust-dashboard-refresh-frequency.md
- 'Set a Dashboard Display Period': thehive/user-guides/analyst-corner/dashboard/set-dashboard-display-period.md
- 'Export or Import a Dashboard': thehive/user-guides/analyst-corner/dashboard/export-import-a-dashboard.md
- 'Download a Dashboard': thehive/user-guides/analyst-corner/dashboard/download-a-dashboard.md
- 'Preview vs. Detail View': thehive/user-guides/analyst-corner/preview-vs-detail-view.md
- 'Filtering and Sorting': thehive/user-guides/analyst-corner/about-filtering-and-sorting.md
- 'Views':
- 'About Views': thehive/user-guides/analyst-corner/views/about-views.md
- 'Create a Custom View': thehive/user-guides/analyst-corner/views/create-a-custom-view.md
- 'Update a Custom View': thehive/user-guides/analyst-corner/views/update-a-custom-view.md
- 'Rename a Custom View': thehive/user-guides/analyst-corner/views/rename-a-custom-view.md
- 'Delete a Custom View': thehive/user-guides/analyst-corner/views/delete-a-custom-view.md
- 'Change a Custom View Visibility': thehive/user-guides/analyst-corner/views/change-visibility-custom-view.md
- 'Autorefresh': thehive/user-guides/analyst-corner/about-autorefresh.md
- 'Statistics': thehive/user-guides/analyst-corner/about-statistics.md
- 'Live Feed': thehive/user-guides/analyst-corner/about-live-feed.md
- 'Knowledge Base':
- 'About the Knowledge Base': thehive/user-guides/knowledge-base/about-knowledge-base.md
- 'Create a Page': thehive/user-guides/knowledge-base/create-a-knowledge-base-page.md
- 'Delete a Page': thehive/user-guides/knowledge-base/delete-a-knowledge-base-page.md
- 'Share a Page': thehive/user-guides/knowledge-base/share-a-knowledge-base-page.md
- 'View a Page': thehive/user-guides/knowledge-base/view-a-knowledge-base-page.md
- 'Key Performance Indicators':
- 'KPIs': thehive/user-guides/key-performance-indicators/key-performance-indicators.md
- 'Measure Case Management Performance': thehive/user-guides/key-performance-indicators/measure-case-management-performance.md
- 'Measure Alert Management Performance': thehive/user-guides/key-performance-indicators/measure-alert-management-performance.md
- 'Measure Task Management Performance': thehive/user-guides/key-performance-indicators/measure-task-management-performance.md
- 'Flavored Markdown Syntax': thehive/user-guides/thehive-flavored-markdown.md
- 'Date Field Definitions': thehive/user-guides/date-field-definitions-alerts-cases.md
- 'External User Guides':
- 'Activate Your Account': thehive/thehive-portal/activate-thehive-portal-account.md
- 'Glossary': thehive/thehive-portal/glossary-thehive-portal.md
- 'Find a Case': thehive/thehive-portal/find-a-case-thehive-portal.md
- 'Create a Case': thehive/thehive-portal/create-case-thehive-portal.md
- 'Post a Comment': thehive/thehive-portal/add-comment-cases-shared-thehive-portal.md
- 'Update a Comment': thehive/thehive-portal/update-comment-cases-shared-thehive-portal.md
- 'Delete a Comment': thehive/thehive-portal/delete-comment-cases-shared-thehive-portal.md
- 'Upload an Attachment': thehive/thehive-portal/add-attachment-cases-shared-thehive-portal.md
- 'Add an Observable': thehive/thehive-portal/add-observable-cases-shared-thehive-portal.md
- 'Account Settings':
- 'Manage Your Account Settings': thehive/thehive-portal/manage-account-settings-thehive-portal.md
- 'Manage Your Password': thehive/user-guides/manage-password.md
- 'Change Your Account Theme': thehive/user-guides/change-account-theme.md
- 'Switch Between Organizations': thehive/user-guides/switch-organizations.md
- 'Log Out of Your Account': thehive/user-guides/log-out.md
- 'API':
- 'API Documentation': thehive/api-docs/
- 'Python Client': https://github.com/thehive-project/thehive4py
- 'Go Client': https://github.com/StrangeBeeCorp/thehive4go
- 'MCP Server': https://github.com/StrangeBeeCorp/TheHiveMCP"target="_blank
- 'Release Notes':
- 'Release Notes for Version 5.0': thehive/release-notes/release-notes-5.0.md
- 'Release Notes for Version 5.1': thehive/release-notes/release-notes-5.1.md
- 'Release Notes for Version 5.2': thehive/release-notes/release-notes-5.2.md
- 'Release Notes for Version 5.3': thehive/release-notes/release-notes-5.3.md
- 'Release Notes for Version 5.4': thehive/release-notes/release-notes-5.4.md
- 'Release Notes for Version 5.5': thehive/release-notes/release-notes-5.5.md
- 'Release Notes for Version 5.6': thehive/release-notes/release-notes-5.6.md
- 'Release Notes for Version 5.7': thehive/release-notes/release-notes-5.7.md
- Cortex:
- cortex/index.md
- 'Download':
- 'cortex/download/index.md'
- 'Installation & configuration':
- ./cortex/installation-and-configuration/authentication.md
- ./cortex/installation-and-configuration/secret.md
- ./cortex/installation-and-configuration/advanced-configuration.md
- ./cortex/installation-and-configuration/ssl.md
- ./cortex/installation-and-configuration/cortex-packages.md
- ./cortex/installation-and-configuration/step-by-step-guide.md
- ./cortex/installation-and-configuration/index.md
- ./cortex/installation-and-configuration/analyzers-responders.md
- ./cortex/installation-and-configuration/run-cortex-with-docker.md
- ./cortex/installation-and-configuration/proxy-settings.md
- ./cortex/installation-and-configuration/parameters-docker.md
- ./cortex/installation-and-configuration/database.md
- ./cortex/installation-and-configuration/deploy-cortex-on-kubernetes.md
- 'User Guides':
- 'First start' : 'cortex/user-guides/first-start.md'
- 'User roles' : 'cortex/user-guides/roles.md'
- 'Operations':
# - 'cortex/operations/index.md'
- 'Backup & Restore': 'cortex/operations/backup-restore.md'
- 'Analyzers/Responders input and output': 'cortex/operations/input-output.md'
- 'Upgrade to Cortex 3.1': 'cortex/operations/upgrade_to_cortex_3_1_and_es7_x.md'
- 'Upgrade to Cortex 4.0': 'cortex/operations/upgrade-cortex-4.md'
- 'End of APT and YUM repositories':
- 'Deprecation Notice': thehive/operations/apt-yum-repositories-end/apt-yum-deprecation-notice.md
- 'Switch to Manual Download and Installation': cortex/operations/switch-to-manual-download-installation-cortex.md
- 'API':
- 'API Guide': './cortex/api/api-guide.md'
- 'How to create an Analyzer' : './cortex/api/how-to-create-an-analyzer.md'
- 'How to create a Responder': './cortex/api/how-to-create-a-responder.md'
- 'Cortex Neurons': https://thehive-project.github.io/Cortex-Analyzers/"target="_blank
- 'Resources':
- resources/index.md
- resources/templates.md
- 'Demo Environments':
- 'VM Demo Environment': resources/vm-demo.md
- 'Docker Demo Environment': resources/docker-demo.md
- 'IaaS deployment':
- 'Amazon AWS':
- 'Main Features': resources/iaas/aws/index.md
- 'Deploy TheHive AMI': resources/iaas/aws/thehive.md
- 'Deploy Cortex AMI': resources/iaas/aws/cortex.md
- 'AWS sample code': resources/iaas/aws/infra-as-code/README.md
- 'Create and manage the SecOps VPC': resources/iaas/aws/infra-as-code/ug-secops-vpc/README.md
- 'TheHive v5 and Cortex within a SecOps VPC': resources/iaas/aws/infra-as-code/ug-secops-instances/README.md
- 'Microsoft Azure':
- 'Main Features': resources/iaas/azure/index.md
- 'Deploy TheHive Azure image': resources/iaas/azure/thehive.md
- 'Deploy Cortex Azure image': resources/iaas/azure/cortex.md
- 'Azure sample code': resources/iaas/azure/infra-as-code/README.md
- 'Creating a new SecOps Virtual Network': resources/iaas/azure/infra-as-code/ug-secops-vnet/README.md
- 'Deploying TheHive v5 and Cortex with Terraform': resources/iaas/azure/infra-as-code/ug-secops-instances/README.md
- 'Upgrading your Azure instances': resources/iaas/azure/infra-as-code/ug-secops-instances/docs/upgrade.md
- 'Open source projects':
- 'SDK':
- "TheHive4py": resources/thehive4py.md
- "TheHive4go": resources/thehive4go.md