-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathWorkbooksMetadata.json
More file actions
9878 lines (9878 loc) · 334 KB
/
WorkbooksMetadata.json
File metadata and controls
9878 lines (9878 loc) · 334 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
[
{
"workbookKey": "1PasswordWorkbook",
"logoFileName": "1password.svg",
"description": "Gain insights and comprehensive monitoring into 1Password events data by analyzing traffic and user activities.\nThis workbook provides insights into various 1Password events types.\nYou can use this workbook to get visibility in to your 1Password Security Events and quickly identify threats, anamolies, traffic patterns, application usage, blocked IP addresses and more.",
"dataTypesDependencies": [
"OnePasswordEventLogs_CL"
],
"dataConnectorsDependencies": [
"1Password"
],
"previewImagesFileNames": [
"1PasswordLogsBlack1.png",
"1PasswordLogsBlack2.png",
"1PasswordLogsBlack3.png",
"1PasswordLogsBlack4.png",
"1PasswordLogsWhite1.png",
"1PasswordLogsWhite2.png",
"1PasswordLogsWhite3.png",
"1PasswordLogsWhite4.png"
],
"version": "1.0.0",
"title": "1Password Events Workbook",
"templateRelativePath": "1Password.json",
"subtitle": "",
"provider": "1Password"
},
{
"workbookKey": "42CrunchAPIProtectionWorkbook",
"logoFileName": "42CrunchLogo.svg",
"description": "Monitor and protect APIs using the 42Crunch API microfirewall",
"dataTypesDependencies": [
"apifirewall_log_1_CL"
],
"dataConnectorsDependencies": [
"42CrunchAPIProtection"
],
"previewImagesFileNames": [
"42CrunchInstancesBlack.png",
"42CrunchInstancesWhite.png",
"42CrunchRequestsBlack.png",
"42CrunchRequestsWhite.png",
"42CrunchStatusBlack.png",
"42CrunchStatusWhite.png"
],
"version": "1.0.0",
"title": "42Crunch API Protection Workbook",
"templateRelativePath": "42CrunchAPIProtectionWorkbook.json",
"subtitle": "",
"provider": "42Crunch"
},
{
"workbookKey": "AttackSurfaceReduction",
"logoFileName": "M365securityposturelogo.svg",
"description": "This workbook helps you implement the ASR rules of Windows/Defender, and to monitor them over time. The workbook can filter on ASR rules in Audit mode and Block mode.",
"dataTypesDependencies": [
"DeviceEvents"
],
"dataConnectorsDependencies": [
"MicrosoftThreatProtection"
],
"previewImagesFileNames": [
"AttackSurfaceReductionWhite.png",
"AttackSurfaceReductionBlack.png"
],
"version": "1.0.0",
"title": "Attack Surface Reduction Dashboard",
"templateRelativePath": "AttackSurfaceReduction.json",
"subtitle": "",
"provider": "Microsoft Sentinel community"
},
{
"workbookKey": "ForcepointNGFWAdvanced",
"logoFileName": "FPAdvLogo.svg",
"description": "Gain threat intelligence correlated security and application insights on Forcepoint NGFW (Next Generation Firewall). Monitor Forcepoint logging servers health.",
"dataTypesDependencies": [
"CommonSecurityLog",
"ThreatIntelligenceIndicator"
],
"dataConnectorsDependencies": [
"ThreatIntelligence",
"CefAma"
],
"previewImagesFileNames": [
"ForcepointNGFWAdvancedWhite.png",
"ForcepointNGFWAdvancedBlack.png"
],
"version": "1.0.0",
"title": "Forcepoint Next Generation Firewall (NGFW) Advanced Workbook",
"templateRelativePath": "ForcepointNGFWAdvanced.json",
"subtitle": "",
"provider": "Forcepoint"
},
{
"workbookKey": "AzureActivityWorkbook",
"logoFileName": "azureactivity_logo.svg",
"description": "Gain extensive insight into your organization's Azure Activity by analyzing, and correlating all user operations and events.\nYou can learn about all user operations, trends, and anomalous changes over time.\nThis workbook gives you the ability to drill down into caller activities and summarize detected failure and warning events.",
"dataTypesDependencies": [
"AzureActivity"
],
"dataConnectorsDependencies": [
"AzureActivity"
],
"previewImagesFileNames": [
"AzureActivityWhite1.png",
"AzureActivityBlack1.png"
],
"version": "2.0.0",
"title": "Azure Activity",
"templateRelativePath": "AzureActivity.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "IdentityAndAccessWorkbook",
"logoFileName": "Microsoft_logo.svg",
"description": "Gain insights into Identity and access operations by collecting and analyzing security logs, using the audit and sign-in logs to gather insights into use of Microsoft products.\nYou can view anomalies and trends across login events from all users and machines. This workbook also identifies suspicious entities from login and access events.",
"dataTypesDependencies": [
"SecurityEvent"
],
"dataConnectorsDependencies": [
"SecurityEvents",
"WindowsSecurityEvents"
],
"previewImagesFileNames": [
"IdentityAndAccessWhite.png",
"IdentityAndAccessBlack.png"
],
"version": "1.1.0",
"title": "Identity & Access",
"templateRelativePath": "IdentityAndAccess.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "CheckPointWorkbook",
"logoFileName": "checkpoint_logo.svg",
"description": "Gain insights into Check Point network activities, including number of gateways and servers, security incidents, and identify infected hosts.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CheckPoint"
],
"previewImagesFileNames": [
"CheckPointWhite.png",
"CheckPointBlack.png"
],
"version": "1.0.0",
"title": "Check Point Software Technologies",
"templateRelativePath": "CheckPoint.json",
"subtitle": "",
"provider": "Check Point"
},
{
"workbookKey": "CiscoWorkbook",
"logoFileName": "cisco_logo.svg",
"description": "Gain insights into your Cisco ASA firewalls by analyzing traffic, events, and firewall operations.\nThis workbook analyzes Cisco ASA threat events and identifies suspicious ports, users, protocols and IP addresses.\nYou can learn about trends across user and data traffic directions, and drill down into the Cisco filter results.\nEasily detect attacks on your organization by monitoring management operations, such as configuration and logins.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CiscoASA"
],
"previewImagesFileNames": [
"CiscoWhite.png",
"CiscoBlack.png"
],
"version": "1.1.0",
"title": "Cisco - ASA",
"templateRelativePath": "Cisco.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "ExchangeOnlineWorkbook",
"logoFileName": "office365_logo.svg",
"description": "Gain insights into Microsoft Exchange online by tracing and analyzing all Exchange operations and user activities.\nThis workbook let you monitor user activities, including logins, account operations, permission changes, and mailbox creations to discover suspicious trends among them.",
"dataTypesDependencies": [
"OfficeActivity"
],
"dataConnectorsDependencies": [
"Office365"
],
"previewImagesFileNames": [
"ExchangeOnlineWhite.png",
"ExchangeOnlineBlack.png"
],
"version": "2.0.0",
"title": "Exchange Online",
"templateRelativePath": "ExchangeOnline.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "CloudNGFW-OverviewWorkbook",
"logoFileName": "paloalto_logo.svg",
"description": "Gain insights and comprehensive monitoring into Azure CloudNGFW by Palo Alto Networks by analyzing traffic and activities.\nThis workbook correlates all Palo Alto data with threat events to identify suspicious entities and relationships.\nYou can learn about trends across user and data traffic, and drill down into Palo Alto Wildfire and filter results.",
"dataTypesDependencies": [
"fluentbit_CL"
],
"dataConnectorsDependencies": [
"AzureCloudNGFWByPaloAltoNetworks"
],
"previewImagesFileNames": [
"PaloAltoOverviewWhite1.png",
"PaloAltoOverviewBlack1.png",
"PaloAltoOverviewWhite2.png",
"PaloAltoOverviewBlack2.png",
"PaloAltoOverviewWhite3.png",
"PaloAltoOverviewBlack3.png"
],
"version": "1.2.0",
"title": "Azure CloudNGFW By Palo Alto Networks - Overview",
"templateRelativePath": "CloudNGFW-Overview.json",
"subtitle": "",
"provider": "Palo Alto Networks"
},
{
"workbookKey": "CloudNGFW-NetworkThreatWorkbook",
"logoFileName": "paloalto_logo.svg",
"description": "Gain insights into Azure CloudNGFW activities by analyzing threat events.\nYou can extract meaningful security information by correlating data between threats, applications, and time.\nThis workbook makes it easy to track malware, vulnerability, and virus log events.",
"dataTypesDependencies": [
"fluentbit_CL"
],
"dataConnectorsDependencies": [
"AzureCloudNGFWByPaloAltoNetworks"
],
"previewImagesFileNames": [
"PaloAltoNetworkThreatWhite1.png",
"PaloAltoNetworkThreatBlack1.png",
"PaloAltoNetworkThreatWhite2.png",
"PaloAltoNetworkThreatBlack2.png"
],
"version": "1.2.0",
"title": "Azure CloudNGFW By Palo Alto Networks - Network Threats",
"templateRelativePath": "CloudNGFW-NetworkThreat.json",
"subtitle": "",
"provider": "Palo Alto Networks"
},
{
"workbookKey": "PaloAltoOverviewWorkbook",
"logoFileName": "paloalto_logo.svg",
"description": "Gain insights and comprehensive monitoring into Palo Alto firewalls by analyzing traffic and activities.\nThis workbook correlates all Palo Alto data with threat events to identify suspicious entities and relationships.\nYou can learn about trends across user and data traffic, and drill down into Palo Alto Wildfire and filter results.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"PaloAltoOverviewWhite1.png",
"PaloAltoOverviewBlack1.png",
"PaloAltoOverviewWhite2.png",
"PaloAltoOverviewBlack2.png",
"PaloAltoOverviewWhite3.png",
"PaloAltoOverviewBlack3.png"
],
"version": "1.2.0",
"title": "Palo Alto overview",
"templateRelativePath": "PaloAltoOverview.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "PaloAltoNetworkThreatWorkbook",
"logoFileName": "paloalto_logo.svg",
"description": "Gain insights into Palo Alto network activities by analyzing threat events.\nYou can extract meaningful security information by correlating data between threats, applications, and time.\nThis workbook makes it easy to track malware, vulnerability, and virus log events.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"PaloAltoNetworkThreatWhite1.png",
"PaloAltoNetworkThreatBlack1.png",
"PaloAltoNetworkThreatWhite2.png",
"PaloAltoNetworkThreatBlack2.png"
],
"version": "1.1.0",
"title": "Palo Alto Network Threat",
"templateRelativePath": "PaloAltoNetworkThreat.json",
"subtitle": "",
"provider": "Palo Alto Networks"
},
{
"workbookKey": "EsetSMCWorkbook",
"logoFileName": "eset-logo.svg",
"description": "Visualize events and threats from Eset Security Management Center.",
"dataTypesDependencies": [
"eset_CL"
],
"dataConnectorsDependencies": [
"EsetSMC"
],
"previewImagesFileNames": [
"esetSMCWorkbook-black.png",
"esetSMCWorkbook-white.png"
],
"version": "1.0.0",
"title": "Eset Security Management Center Overview",
"templateRelativePath": "esetSMCWorkbook.json",
"subtitle": "",
"provider": "Community",
"support": {
"tier": "Community"
},
"author": {
"name": "Tomáš Kubica"
},
"source": {
"kind": "Community"
},
"categories": {
"domains": [
"Security - Others"
]
}
},
{
"workbookKey": "FortigateWorkbook",
"logoFileName": "fortinet_logo.svg",
"description": "Gain insights into Fortigate firewalls by analyzing traffic and activities.\nThis workbook finds correlations in Fortigate threat events and identifies suspicious ports, users, protocols and IP addresses.\nYou can learn about trends across user and data traffic, and drill down into the Fortigate filter results.\nEasily detect attacks on your organization by monitoring management operations such as configuration and logins.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"FortigateWhite.png",
"FortigateBlack.png"
],
"version": "1.1.0",
"title": "FortiGate",
"templateRelativePath": "Fortigate.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "DnsWorkbook",
"logoFileName": "dns_logo.svg",
"description": "Gain extensive insight into your organization's DNS by analyzing, collecting and correlating all DNS events.\nThis workbook exposes a variety of information about suspicious queries, malicious IP addresses and domain operations.",
"dataTypesDependencies": [
"DnsInventory",
"DnsEvents"
],
"dataConnectorsDependencies": [
"DNS"
],
"previewImagesFileNames": [
"DnsWhite.png",
"DnsBlack.png"
],
"version": "1.3.0",
"title": "DNS",
"templateRelativePath": "Dns.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "Office365Workbook",
"logoFileName": "office365_logo.svg",
"description": "Gain insights into Office 365 by tracing and analyzing all operations and activities. You can drill down into your SharePoint, OneDrive, and Exchange.\nThis workbook lets you find usage trends across users, files, folders, and mailboxes, making it easier to identify anomalies in your network.",
"dataTypesDependencies": [
"OfficeActivity"
],
"dataConnectorsDependencies": [
"Office365"
],
"previewImagesFileNames": [
"Office365White1.png",
"Office365Black1.png",
"Office365White2.png",
"Office365Black2.png",
"Office365White3.png",
"Office365Black3.png"
],
"version": "2.0.1",
"title": "Office 365",
"templateRelativePath": "Office365.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "SharePointAndOneDriveWorkbook",
"logoFileName": "office365_logo.svg",
"description": "Gain insights into SharePoint and OneDrive by tracing and analyzing all operations and activities.\nYou can view trends across user operation, find correlations between users and files, and identify interesting information such as user IP addresses.",
"dataTypesDependencies": [
"OfficeActivity"
],
"dataConnectorsDependencies": [
"Office365"
],
"previewImagesFileNames": [
"SharePointAndOneDriveBlack1.png",
"SharePointAndOneDriveBlack2.png",
"SharePointAndOneDriveWhite1.png",
"SharePointAndOneDriveWhite2.png"
],
"version": "2.0.0",
"title": "SharePoint & OneDrive",
"templateRelativePath": "SharePointAndOneDrive.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "AzureActiveDirectorySigninLogsWorkbook",
"logoFileName": "azureactivedirectory_logo.svg",
"description": "Gain insights into Microsoft Entra ID by connecting Microsoft Sentinel and using the sign-in logs to gather insights around Microsoft Entra ID scenarios. \nYou can learn about sign-in operations, such as user sign-ins and locations, email addresses, and IP addresses of your users, as well as failed activities and the errors that triggered the failures.",
"dataTypesDependencies": [
"SigninLogs"
],
"dataConnectorsDependencies": [
"AzureActiveDirectory"
],
"previewImagesFileNames": [
"AADsigninBlack1.png",
"AADsigninBlack2.png",
"AADsigninWhite1.png",
"AADsigninWhite2.png"
],
"version": "2.4.0",
"title": "Microsoft Entra ID Sign-in logs",
"templateRelativePath": "AzureActiveDirectorySignins.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "VirtualMachinesInsightsWorkbook",
"logoFileName": "azurevirtualmachine_logo.svg",
"description": "Gain rich insight into your organization's virtual machines from Azure Monitor, which analyzes and correlates data in your VM network. \nYou will get visibility on your VM parameters and behavior, and will be able to trace sent and received data. \nIdentify malicious attackers and their targets, and drill down into the protocols, source and destination IP addresses, countries, and ports the attacks occur across.",
"dataTypesDependencies": [
"VMConnection",
"ServiceMapComputer_CL",
"ServiceMapProcess_CL"
],
"dataConnectorsDependencies": [],
"previewImagesFileNames": [
"VMInsightBlack1.png",
"VMInsightWhite1.png"
],
"version": "1.3.0",
"title": "VM insights",
"templateRelativePath": "VirtualMachinesInsights.json",
"subtitle": "",
"provider": "Microsoft",
"support": {
"tier": "Microsoft"
},
"author": {
"name": "Microsoft Corporation"
},
"source": {
"kind": "Community"
},
"categories": {
"domains": [
"IT Operations",
"Platform"
]
}
},
{
"workbookKey": "AzureActiveDirectoryAuditLogsWorkbook",
"logoFileName": "azureactivedirectory_logo.svg",
"description": "Gain insights into Microsoft Entra ID by connecting Microsoft Sentinel and using the audit logs to gather insights around Microsoft Entra ID scenarios. \nYou can learn about user operations, including password and group management, device activities, and top active users and apps.",
"dataTypesDependencies": [
"AuditLogs"
],
"dataConnectorsDependencies": [
"AzureActiveDirectory"
],
"previewImagesFileNames": [
"AzureADAuditLogsBlack1.png",
"AzureADAuditLogsWhite1.png"
],
"version": "1.2.0",
"title": "Microsoft Entra ID Audit logs",
"templateRelativePath": "AzureActiveDirectoryAuditLogs.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "ThreatIntelligenceWorkbook",
"logoFileName": "Azure_Sentinel.svg",
"description": "Gain insights into threat indicators ingestion and search for indicators at scale across Microsoft 1st Party, 3rd Party, On-Premises, Hybrid, and Multi-Cloud Workloads. Indicators Search facilitates a simple interface for finding IP, File, Hash, Sender and more across your data. Seamless pivots to correlate indicators with Microsoft Sentinel: Incidents to make your threat intelligence actionable.",
"dataTypesDependencies": [
"ThreatIntelligenceIndicator",
"SecurityIncident"
],
"dataConnectorsDependencies": [
"ThreatIntelligence",
"ThreatIntelligenceTaxii",
"MicrosoftDefenderThreatIntelligence",
"ThreatIntelligenceUploadIndicatorsAPI"
],
"previewImagesFileNames": [
"ThreatIntelligenceWhite.png",
"ThreatIntelligenceBlack.png"
],
"version": "5.0.0",
"title": "Threat Intelligence",
"templateRelativePath": "ThreatIntelligence.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "WebApplicationFirewallOverviewWorkbook",
"logoFileName": "waf_logo.svg",
"description": "Gain insights into your organization's Azure web application firewall (WAF). You will get a general overview of your application gateway firewall and application gateway access events.",
"dataTypesDependencies": [
"AzureDiagnostics"
],
"dataConnectorsDependencies": [
"WAF"
],
"previewImagesFileNames": [
"WAFOverviewBlack.png",
"WAFOverviewWhite.png"
],
"version": "1.1.0",
"title": "Microsoft Web Application Firewall (WAF) - overview",
"templateRelativePath": "WebApplicationFirewallOverview.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "WebApplicationFirewallFirewallEventsWorkbook",
"logoFileName": "waf_logo.svg",
"description": "Gain insights into your organization's Azure web application firewall (WAF). You will get visibility in to your application gateway firewall. You can view anomalies and trends across all firewall event triggers, attack events, blocked URL addresses and more.",
"dataTypesDependencies": [
"AzureDiagnostics"
],
"dataConnectorsDependencies": [
"WAF"
],
"previewImagesFileNames": [
"WAFFirewallEventsBlack1.png",
"WAFFirewallEventsBlack2.png",
"WAFFirewallEventsWhite1.png",
"WAFFirewallEventsWhite2.png"
],
"version": "1.1.0",
"title": "Microsoft Web Application Firewall (WAF) - firewall events",
"templateRelativePath": "WebApplicationFirewallFirewallEvents.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "SilverfortWorkbook",
"logoFileName": "silverfort-logo.svg",
"description": "The [Silverfort](https://silverfort.com) ITDR Admin Console connector solution allows ingestion of Silverfort events and logging into Microsoft Sentinel.\n Silverfort provides syslog based events and logging using Common Event Format (CEF). By forwarding your Silverfort ITDR Admin Console CEF data into Microsoft Sentinel, you can take advantage of Sentinels's search & correlation, alerting, and threat intelligence enrichment on Silverfort data. \n Please contact Silverfort or consult the Silverfort documentation for more information.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"SilverfortAma"
],
"previewImagesFileNames": [
"SilverfortWhite.png",
"SilverfortBlack.png"
],
"version": "1.0.0",
"title": "Silverfort Admin Console",
"templateRelativePath": "SilverfortWorkbook.json",
"subtitle": "",
"provider": "Silverfort"
},
{
"workbookKey": "WebApplicationFirewallGatewayAccessEventsWorkbook",
"logoFileName": "waf_logo.svg",
"description": "Gain insights into your organization's Azure web application firewall (WAF). You will get visibility in to your application gateway access events. You can view anomalies and trends across received and sent data, client IP addresses, URL addresses and more, and drill down into details.",
"dataTypesDependencies": [
"AzureDiagnostics"
],
"dataConnectorsDependencies": [
"WAF"
],
"previewImagesFileNames": [
"WAFGatewayAccessEventsBlack1.png",
"WAFGatewayAccessEventsBlack2.png",
"WAFGatewayAccessEventsWhite1.png",
"WAFGatewayAccessEventsWhite2.png"
],
"version": "1.2.0",
"title": "Microsoft Web Application Firewall (WAF) - gateway access events",
"templateRelativePath": "WebApplicationFirewallGatewayAccessEvents.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "LinuxMachinesWorkbook",
"logoFileName": "azurevirtualmachine_logo.svg",
"description": "Gain insights into your workspaces' Linux machines by connecting Microsoft Sentinel and using the logs to gather insights around Linux events and errors.",
"dataTypesDependencies": [
"Syslog"
],
"dataConnectorsDependencies": [
"Syslog"
],
"previewImagesFileNames": [
"LinuxMachinesWhite.png",
"LinuxMachinesBlack.png"
],
"version": "1.1.0",
"title": "Linux machines",
"templateRelativePath": "LinuxMachines.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "AzureFirewallWorkbook",
"logoFileName": "AzFirewalls.svg",
"description": "Gain insights into Azure Firewall events. You can learn about your application and network rules, see metrics for firewall activities across URLs, ports, and addresses across multiple workspaces.",
"dataTypesDependencies": [
"AzureDiagnostics"
],
"dataConnectorsDependencies": [
"AzureFirewall"
],
"previewImagesFileNames": [
"AzureFirewallWorkbookWhite1.PNG",
"AzureFirewallWorkbookBlack1.PNG",
"AzureFirewallWorkbookWhite2.PNG",
"AzureFirewallWorkbookBlack2.PNG",
"AzureFirewallWorkbookWhite3.PNG",
"AzureFirewallWorkbookBlack3.PNG",
"AzureFirewallWorkbookWhite4.PNG",
"AzureFirewallWorkbookBlack4.PNG",
"AzureFirewallWorkbookWhite5.PNG",
"AzureFirewallWorkbookBlack5.PNG"
],
"version": "1.3.0",
"title": "Azure Firewall",
"templateRelativePath": "AzureFirewallWorkbook.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "AzureFirewallWorkbook-StructuredLogs",
"logoFileName": "AzFirewalls.svg",
"description": "Gain insights into Azure Firewall events using the new Structured Logs for Azure Firewall. You can learn about your application and network rules, see metrics for firewall activities across URLs, ports, and addresses across multiple workspaces.",
"dataTypesDependencies": [
"AZFWNetworkRule",
"AZFWApplicationRule",
"AZFWDnsQuery",
"AZFWThreatIntel"
],
"dataConnectorsDependencies": [
"AzureFirewall"
],
"previewImagesFileNames": [
"AzureFirewallWorkbookWhite1.PNG",
"AzureFirewallWorkbookBlack1.PNG",
"AzureFirewallWorkbookWhite2.PNG",
"AzureFirewallWorkbookBlack2.PNG",
"AzureFirewallWorkbookWhite3.PNG",
"AzureFirewallWorkbookBlack3.PNG",
"AzureFirewallWorkbookWhite4.PNG",
"AzureFirewallWorkbookBlack4.PNG",
"AzureFirewallWorkbookWhite5.PNG",
"AzureFirewallWorkbookBlack5.PNG"
],
"version": "1.0.0",
"title": "Azure Firewall Structured Logs",
"templateRelativePath": "AzureFirewallWorkbook-StructuredLogs.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "AzureDDoSStandardProtection",
"logoFileName": "AzDDoS.svg",
"description": "This workbook visualizes security-relevant Azure DDoS events across several filterable panels. Offering a summary tab, metrics and a investigate tabs across multiple workspaces.",
"dataTypesDependencies": [
"AzureDiagnostics"
],
"dataConnectorsDependencies": [
"DDOS"
],
"previewImagesFileNames": [
"AzureDDoSWhite1.PNG",
"AzureDDoSBlack1.PNG",
"AzureDDoSWhite2.PNG",
"AzureDDoSBlack2.PNG",
"AzureDDoSWhite2.PNG",
"AzureDDoSBlack2.PNG"
],
"version": "1.0.2",
"title": "Azure DDoS Protection Workbook",
"templateRelativePath": "AzDDoSStandardWorkbook.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "MicrosoftCloudAppSecurityWorkbook",
"logoFileName": "Microsoft_logo.svg",
"description": "Using this workbook, you can identify which cloud apps are being used in your organization, gain insights from usage trends and drill down to a specific user and application.",
"dataTypesDependencies": [
"McasShadowItReporting"
],
"dataConnectorsDependencies": [
"MicrosoftCloudAppSecurity"
],
"previewImagesFileNames": [
"McasDiscoveryBlack.png",
"McasDiscoveryWhite.png"
],
"version": "1.2.0",
"title": "Microsoft Cloud App Security - discovery logs",
"templateRelativePath": "MicrosoftCloudAppSecurity.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "F5BIGIPSytemMetricsWorkbook",
"logoFileName": "f5_logo.svg",
"description": "Gain insight into F5 BIG-IP health and performance. This workbook provides visibility of various metrics including CPU, memory, connectivity, throughput and disk utilization.",
"dataTypesDependencies": [
"F5Telemetry_system_CL",
"F5Telemetry_AVR_CL"
],
"dataConnectorsDependencies": [
"F5BigIp"
],
"previewImagesFileNames": [
"F5SMBlack.png",
"F5SMWhite.png"
],
"version": "1.1.0",
"title": "F5 BIG-IP System Metrics",
"templateRelativePath": "F5BIGIPSystemMetrics.json",
"subtitle": "",
"provider": "F5 Networks"
},
{
"workbookKey": "F5NetworksWorkbook",
"logoFileName": "f5_logo.svg",
"description": "Gain insights into F5 BIG-IP Application Security Manager (ASM), by analyzing traffic and activities.\nThis workbook provides insight into F5's web application firewall events and identifies attack traffic patterns across multiple ASM instances as well as overall BIG-IP health.",
"dataTypesDependencies": [
"F5Telemetry_LTM_CL",
"F5Telemetry_system_CL",
"F5Telemetry_ASM_CL"
],
"dataConnectorsDependencies": [
"F5BigIp"
],
"previewImagesFileNames": [
"F5White.png",
"F5Black.png"
],
"version": "1.1.0",
"title": "F5 BIG-IP ASM",
"templateRelativePath": "F5Networks.json",
"subtitle": "",
"provider": "F5 Networks"
},
{
"workbookKey": "AzureNetworkWatcherWorkbook",
"logoFileName": "networkwatcher_logo.svg",
"description": "Gain deeper understanding of your organization's Azure network traffic by analyzing, and correlating Network Security Group flow logs. \nYou can trace malicious traffic flows, and drill down into their protocols, source and destination IP addresses, machines, countries, and subnets. \nThis workbook also helps you protect your network by identifying weak NSG rules.",
"dataTypesDependencies": [
"AzureNetworkAnalytics_CL"
],
"dataConnectorsDependencies": [],
"previewImagesFileNames": [
"AzureNetworkWatcherWhite.png",
"AzureNetworkWatcherBlack.png"
],
"version": "1.1.0",
"title": "Azure Network Watcher",
"templateRelativePath": "AzureNetworkWatcher.json",
"subtitle": "",
"provider": "Microsoft",
"support": {
"tier": "Microsoft"
},
"author": {
"name": "Microsoft Corporation"
},
"source": {
"kind": "Community"
},
"categories": {
"domains": [
"Security - Network"
]
}
},
{
"workbookKey": "ZscalerFirewallWorkbook",
"logoFileName": "zscaler_logo.svg",
"description": "Gain insights into your ZIA cloud firewall logs by connecting to Microsoft Sentinel.\nThe Zscaler firewall overview workbook provides an overview and ability to drill down into all cloud firewall activity in your Zscaler instance including non-web related networking events, security events, firewall rules, and bandwidth consumption",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"ZscalerFirewallWhite1.png",
"ZscalerFirewallBlack1.png",
"ZscalerFirewallWhite2.png",
"ZscalerFirewallBlack2.png"
],
"version": "1.1.0",
"title": "Zscaler Firewall",
"templateRelativePath": "ZscalerFirewall.json",
"subtitle": "",
"provider": "Zscaler"
},
{
"workbookKey": "ZscalerWebOverviewWorkbook",
"logoFileName": "zscaler_logo.svg",
"description": "Gain insights into your ZIA web logs by connecting to Microsoft Sentinel.\nThe Zscaler web overview workbook provides a bird's eye view and ability to drill down into all the security and networking events related to web transactions, types of devices, and bandwidth consumption.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"ZscalerWebOverviewWhite.png",
"ZscalerWebOverviewBlack.png"
],
"version": "1.1.0",
"title": "Zscaler Web Overview",
"templateRelativePath": "ZscalerWebOverview.json",
"subtitle": "",
"provider": "Zscaler"
},
{
"workbookKey": "ZscalerThreatsOverviewWorkbook",
"logoFileName": "zscaler_logo.svg",
"description": "Gain insights into threats blocked by Zscaler Internet access on your network.\nThe Zscaler threat overview workbook shows your entire threat landscape including blocked malware, IPS/AV rules, and blocked cloud apps. Threats are displayed by threat categories, filetypes, inbound vs outbound threats, usernames, user location, and more.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"ZscalerThreatsWhite.png",
"ZscalerThreatsBlack.png"
],
"version": "1.2.0",
"title": "Zscaler Threats",
"templateRelativePath": "ZscalerThreats.json",
"subtitle": "",
"provider": "Zscaler"
},
{
"workbookKey": "ZscalerOffice365AppsWorkbook",
"logoFileName": "zscaler_logo.svg",
"description": "Gain insights into Office 365 use on your network.\nThe Zscaler Office 365 overview workbook shows you the Microsoft apps running on your network and their individual bandwidth consumption. It also helps identify phishing attempts in which attackers disguised themselves as Microsoft services.",
"dataTypesDependencies": [
"CommonSecurityLog"
],
"dataConnectorsDependencies": [
"CefAma"
],
"previewImagesFileNames": [
"ZscalerOffice365White.png",
"ZscalerOffice365Black.png"
],
"version": "1.1.0",
"title": "Zscaler Office365 Apps",
"templateRelativePath": "ZscalerOffice365Apps.json",
"subtitle": "",
"provider": "Zscaler"
},
{
"workbookKey": "InsecureProtocolsWorkbook",
"logoFileName": "Microsoft_logo.svg",
"description": "Gain insights into insecure protocol traffic by collecting and analyzing security events from Microsoft products.\nYou can view analytics and quickly identify use of weak authentication as well as sources of legacy protocol traffic, like NTLM and SMBv1.\nYou will also have the ability to monitor use of weak ciphers, allowing you to find weak spots in your organization's security.",
"dataTypesDependencies": [
"SecurityEvent",
"Event",
"SigninLogs"
],
"dataConnectorsDependencies": [
"SecurityEvents",
"AzureActiveDirectory",
"WindowsSecurityEvents"
],
"previewImagesFileNames": [
"InsecureProtocolsWhite1.png",
"InsecureProtocolsBlack1.png",
"InsecureProtocolsWhite2.png",
"InsecureProtocolsBlack2.png"
],
"version": "2.1.0",
"title": "Insecure Protocols",
"templateRelativePath": "InsecureProtocols.json",
"subtitle": "",
"provider": "Microsoft",
"support": {
"tier": "Microsoft"
},
"author": {
"name": "Microsoft Corporation"
},
"source": {
"kind": "Community"
},
"categories": {
"domains": [
"Security - Others"
]
}
},
{
"workbookKey": "SummaryRulesWorkbook",
"logoFileName": "ucasemapper.svg",
"description": "The Summary Rules workbook provides a comprehensive analysis of the Summary Rules configured in Microsoft Sentinel. It enables users to monitor rule execution, evaluate performance, and assess overall efficiency. By offering insights into rule behavior and effectiveness, this workbook supports optimization of threat detection strategies and helps ensure that security operations are both responsive and resource-efficient. This workbook is designed to provide insights into the Summary Rules configured in Microsoft Sentinel.",
"previewImagesFileNames": [
"SummaryRulesWhite1.png",
"SummaryRulesWhite2.png",
"SummaryRulesBlack1.png",
"SummaryRulesBlack2.png"
],
"version": "1.0.0",
"title": "Summary Rules Workbook",
"templateRelativePath": "SummaryRulesWorkbook.json",
"dataTypesDependencies": [],
"dataConnectorsDependencies": [],
"subtitle": "",
"provider": "Microsoft Sentinel community",
"support": {
"tier": "Community"
},
"author": {
"name": "Microsoft Sentinel Community"
},
"source": {
"kind": "Community"
},
"categories": {
"domains": [
"Security - Cloud Security"
]
}
},
{
"workbookKey": "usecasemapper",
"logoFileName": "ucasemapper.svg",
"description": "A simple tool to map Use Cases to Content Hub relevant Microsoft Sentinel solutions",
"previewImagesFileNames": [
"useCaseMapperWhite1.png",
"useCaseMapperWhite2.png",
"useCaseMapperWhite3.png",
"useCaseMapperBlack1.png",
"useCaseMapperBlack2.png",
"useCaseMapperBlack3.png"
],
"version": "1.0.0",
"title": "Use Case Mapper",
"templateRelativePath": "usecasemapper.json",
"dataTypesDependencies": [],
"dataConnectorsDependencies": [],
"subtitle": "",
"provider": "Microsoft Sentinel community",
"support": {
"tier": "Community"
},
"author": {
"name": "Microsoft Sentinel Community"
},
"source": {
"kind": "Community"
},
"categories": {
"domains": [
"Security - Cloud Security"
]
}
},
{
"workbookKey": "AmazonWebServicesNetworkActivitiesWorkbook",
"logoFileName": "amazon_web_services_Logo.svg",
"description": "Gain insights into AWS network related resource activities, including the creation, update, and deletions of security groups, network ACLs and routes, gateways, elastic load balancers, VPCs, subnets, and network interfaces.",
"dataTypesDependencies": [
"AWSCloudTrail"
],
"dataConnectorsDependencies": [
"AWS"
],
"previewImagesFileNames": [
"AwsNetworkActivitiesWhite.png",
"AwsNetworkActivitiesBlack.png"
],
"version": "1.0.0",
"title": "AWS Network Activities",
"templateRelativePath": "AmazonWebServicesNetworkActivities.json",
"subtitle": "",
"provider": "Microsoft"
},
{
"workbookKey": "AmazonWebServicesUserActivitiesWorkbook",