-
Notifications
You must be signed in to change notification settings - Fork 1
/
policy_template.go
1015 lines (1014 loc) · 38.3 KB
/
policy_template.go
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
package gobdgz
type PolicyItems struct {
Name string `json:"name"`
UISettings struct {
General struct {
Display struct {
SilentMode struct {
Enable bool `json:"enable"`
IconNotificationArea bool `json:"iconNotificationArea"`
ShowPopups struct {
Enable bool `json:"enable"`
} `json:"showPopups"`
DisplayAlertsPopups bool `json:"displayAlertsPopups"`
ShowBrowserToolbar bool `json:"showBrowserToolbar"`
IssuesVisibility struct {
Enable bool `json:"enable"`
Profile int `json:"profile"`
General bool `json:"general"`
Antimalware bool `json:"antimalware"`
Firewall bool `json:"firewall"`
ContentControl bool `json:"contentControl"`
Update bool `json:"update"`
InstallationRestartNotifications int `json:"installationRestartNotifications"`
OnAccessNotifications int `json:"onAccessNotifications"`
OnDemandNotifications int `json:"onDemandNotifications"`
DissinfectionRestartNotification int `json:"dissinfectionRestartNotification"`
UpdateRestartNotifications int `json:"updateRestartNotifications"`
CloudConnectionNotifications int `json:"cloudConnectionNotifications"`
ShowAfter int `json:"showAfter"`
Introspection bool `json:"introspection"`
} `json:"issuesVisibility"`
EndpointRestartPopup struct {
Enable bool `json:"enable"`
Update bool `json:"update"`
PatchManagement bool `json:"patchManagement"`
} `json:"endpointRestartPopup"`
} `json:"silentMode"`
SupportInformation struct {
Website string `json:"website"`
Email string `json:"email"`
Phone string `json:"phone"`
} `json:"supportInformation"`
} `json:"display"`
Advanced struct {
Settings struct {
ScanSsl struct {
Enabled bool `json:"enabled"`
Protocols struct {
Incoming struct {
Rdp bool `json:"rdp"`
} `json:"incoming"`
Outgoing struct {
HTTP bool `json:"http"`
} `json:"outgoing"`
} `json:"protocols"`
} `json:"scanSsl"`
BrowserSearchAdvisor bool `json:"browserSearchAdvisor"`
RemoveEvents struct {
Settings struct {
Days int `json:"days"`
} `json:"settings"`
} `json:"removeEvents"`
SubmitReports bool `json:"submitReports"`
SubmitSuspicious bool `json:"submitSuspicious"`
SendTelemetry bool `json:"sendTelemetry"`
UseGlobalProtectiveNetwork bool `json:"useGlobalProtectiveNetwork"`
ReportActiveSessions bool `json:"reportActiveSessions"`
} `json:"settings"`
PasswordConfig struct {
Profile int `json:"profile"`
Value string `json:"value"`
} `json:"passwordConfig"`
PowerUser struct {
Enabled bool `json:"enabled"`
Password string `json:"password"`
} `json:"powerUser"`
} `json:"advanced"`
Communication struct {
EcsAssignments []interface{} `json:"ecsAssignments"`
EcsProxy struct {
Profile int `json:"profile"`
} `json:"ecsProxy"`
CloudServicesProxy struct {
Profile int `json:"profile"`
} `json:"cloudServicesProxy"`
} `json:"communication"`
Update struct {
Settings struct {
ProductUpdateScheduler struct {
Enabled bool `json:"enabled"`
Occurrence int `json:"occurrence"`
UpdateInterval int `json:"updateInterval"`
WeekDays struct {
Days []int `json:"days"`
StartHour int `json:"startHour"`
StartMinute int `json:"startMinute"`
EndHour int `json:"endHour"`
EndMinute int `json:"endMinute"`
} `json:"weekDays"`
PostponeReboot bool `json:"postponeReboot"`
RebootAfterInstalling struct {
Enable bool `json:"enable"`
Settings struct {
Day int `json:"day"`
Hour int `json:"hour"`
Minutes int `json:"minutes"`
} `json:"settings"`
} `json:"rebootAfterInstalling"`
UpdateLinuxEdrUsingProductUpdate bool `json:"updateLinuxEdrUsingProductUpdate"`
} `json:"productUpdateScheduler"`
SignatureUpdateScheduler struct {
Enabled bool `json:"enabled"`
Occurrence int `json:"occurrence"`
UpdateInterval int `json:"updateInterval"`
WeekDays struct {
Days []int `json:"days"`
StartHour int `json:"startHour"`
StartMinute int `json:"startMinute"`
EndHour int `json:"endHour"`
EndMinute int `json:"endMinute"`
} `json:"weekDays"`
} `json:"signatureUpdateScheduler"`
UpdateRing int `json:"updateRing"`
Proxy struct {
Enable bool `json:"enable"`
Profile int `json:"profile"`
Settings struct {
Server string `json:"server"`
Port int `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
} `json:"settings"`
} `json:"proxy"`
DefaultLocation bool `json:"defaultLocation"`
} `json:"settings"`
UpdateLocations []struct {
Server string `json:"server"`
UseProxy bool `json:"useProxy"`
} `json:"updateLocations"`
} `json:"update"`
SecurityTelemetry struct {
Enabled bool `json:"enabled"`
Siem int `json:"siem"`
Protocol int `json:"protocol"`
Format int `json:"format"`
URL string `json:"url"`
AllowSelfSignedCertificate bool `json:"allowSelfSignedCertificate"`
Key string `json:"key"`
Proxy struct {
Profile int `json:"profile"`
} `json:"proxy"`
EventTypes struct {
CreateFile bool `json:"createFile"`
CreateProcess bool `json:"createProcess"`
DeleteFile bool `json:"deleteFile"`
Logon bool `json:"logon"`
Logout bool `json:"logout"`
ModifyFile bool `json:"modifyFile"`
MoveFile bool `json:"moveFile"`
NetworkConnection bool `json:"networkConnection"`
ReadFromFile bool `json:"readFromFile"`
RegCreateKey bool `json:"regCreateKey"`
RegDeleteKey bool `json:"regDeleteKey"`
RegDeleteValue bool `json:"regDeleteValue"`
RegModifyValue bool `json:"regModifyValue"`
TerminateProcess bool `json:"terminateProcess"`
} `json:"eventTypes"`
} `json:"securityTelemetry"`
AllowChangeByOtherUsers bool `json:"allowChangeByOtherUsers"`
} `json:"general"`
Antimalware struct {
OnAccess struct {
OnAccessScanning struct {
Enable bool `json:"enable"`
Profile int `json:"profile"`
Settings struct {
General struct {
FileTypes struct {
ScanLocalFile struct {
Enable bool `json:"enable"`
Settings struct {
FileType int `json:"fileType"`
Extensions string `json:"extensions"`
} `json:"settings"`
} `json:"scanLocalFile"`
ScanNetworkFile struct {
Enable bool `json:"enable"`
Settings struct {
FileType int `json:"fileType"`
Extensions string `json:"extensions"`
} `json:"settings"`
} `json:"scanNetworkFile"`
LimitFile struct {
Enable bool `json:"enable"`
Size int `json:"size"`
} `json:"limitFile"`
} `json:"fileTypes"`
Archives struct {
Enable bool `json:"enable"`
LimitArchiveSize int `json:"limitArchiveSize"`
MaximumArchiveDepth int `json:"maximumArchiveDepth"`
} `json:"archives"`
Miscellaneous struct {
ScanBootSectors bool `json:"scanBootSectors"`
ScanProcessMemory bool `json:"scanProcessMemory"`
ScanOnlyNewChangeFiles bool `json:"scanOnlyNewChangeFiles"`
ScanForKeyloggers bool `json:"scanForKeyloggers"`
ScanPUA bool `json:"scanPUA"`
DeferredScanning bool `json:"deferredScanning"`
} `json:"miscellaneous"`
ScanAction struct {
InfectedFiles struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"infectedFiles"`
SuspectFiles struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"suspectFiles"`
} `json:"scanAction"`
} `json:"general"`
Advanced struct {
OnAccessUnix bool `json:"onAccessUnix"`
OnAccessUnixPaths []string `json:"onAccessUnixPaths"`
} `json:"advanced"`
} `json:"settings"`
} `json:"onAccessScanning"`
RansomwareProtection struct {
Enable bool `json:"enable"`
} `json:"ransomwareProtection"`
} `json:"onAccess"`
OnExecute struct {
VirusControl struct {
Enable bool `json:"enable"`
Profile int `json:"profile"`
DefaultAction int `json:"defaultAction"`
} `json:"virusControl"`
CommandLineScanning struct {
FilelessAttackProtection bool `json:"filelessAttackProtection"`
Enable bool `json:"enable"`
Amsi struct {
Enable bool `json:"enable"`
ReportDetectionsToCaller bool `json:"reportDetectionsToCaller"`
} `json:"amsi"`
} `json:"commandLineScanning"`
Theta struct {
Enabled bool `json:"enabled"`
} `json:"theta"`
RansomwareRemediation struct {
Enable bool `json:"enable"`
LocalAttack struct {
Enable bool `json:"enable"`
} `json:"localAttack"`
RemoteAttack struct {
Enable bool `json:"enable"`
} `json:"remoteAttack"`
Restore struct {
Mode int `json:"mode"`
} `json:"restore"`
} `json:"ransomwareRemediation"`
} `json:"onExecute"`
DynamicThreatDefense struct {
Enable bool `json:"enable"`
EnableGlobalReportingForFiles bool `json:"enableGlobalReportingForFiles"`
EnableGlobalReportingForNetwork bool `json:"enableGlobalReportingForNetwork"`
ActionforLocal int `json:"actionforLocal"`
ActionforNetwork int `json:"actionforNetwork"`
TargetedAttack struct {
Enable bool `json:"enable"`
DetectionLevel int `json:"detectionLevel"`
} `json:"targetedAttack"`
SuspiciousFilesAndNetworkTraffic struct {
Enable bool `json:"enable"`
DetectionLevel int `json:"detectionLevel"`
} `json:"suspiciousFilesAndNetworkTraffic"`
Exploits struct {
Enable bool `json:"enable"`
DetectionLevel int `json:"detectionLevel"`
} `json:"exploits"`
Ransomware struct {
Enable bool `json:"enable"`
DetectionLevel int `json:"detectionLevel"`
} `json:"ransomware"`
Grayware struct {
Enable bool `json:"enable"`
DetectionLevel int `json:"detectionLevel"`
} `json:"grayware"`
} `json:"dynamicThreatDefense"`
OnDemand struct {
ScanTask []interface{} `json:"scanTask"`
DeviceScanning struct {
Enable bool `json:"enable"`
Settings struct {
AutomaticallyScanCdDvd bool `json:"automaticallyScanCdDvd"`
AutomaticallyScanUsb bool `json:"automaticallyScanUsb"`
ScanDevices struct {
Enable bool `json:"enable"`
Maxim int `json:"maxim"`
} `json:"scanDevices"`
} `json:"settings"`
ScanProfile int `json:"scanProfile"`
ScanSettings struct {
FileTypes int `json:"fileTypes"`
Extensions []interface{} `json:"extensions"`
Archives struct {
Enable bool `json:"enable"`
Settings struct {
LimitArchiveSize int `json:"limitArchiveSize"`
MaximumArchiveDepth int `json:"maximumArchiveDepth"`
} `json:"settings"`
ScanEmail bool `json:"scanEmail"`
} `json:"archives"`
Miscellaneous struct {
ScanBoot bool `json:"scanBoot"`
ScanRegistry bool `json:"scanRegistry"`
ScanRootkits bool `json:"scanRootkits"`
IgnoreKeyloggers bool `json:"ignoreKeyloggers"`
ScanMemory bool `json:"scanMemory"`
ScanCookie bool `json:"scanCookie"`
ScanNewChanged bool `json:"scanNewChanged"`
ScanPUA bool `json:"scanPUA"`
ScanNetworkFiles bool `json:"scanNetworkFiles"`
} `json:"miscellaneous"`
Action struct {
WhenInfected struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"whenInfected"`
WhenSuspect struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"whenSuspect"`
WhenRootKitAction int `json:"whenRootKitAction"`
} `json:"action"`
} `json:"scanSettings"`
} `json:"deviceScanning"`
ContextualScan struct {
ScanProfile int `json:"scanProfile"`
ScanSettings struct {
Miscellaneous struct {
ScanBoot bool `json:"scanBoot"`
ScanRegistry bool `json:"scanRegistry"`
ScanRootkits bool `json:"scanRootkits"`
IgnoreKeyloggers bool `json:"ignoreKeyloggers"`
ScanMemory bool `json:"scanMemory"`
ScanCookie bool `json:"scanCookie"`
ScanNewChanged bool `json:"scanNewChanged"`
ScanPUA bool `json:"scanPUA"`
ScanNetworkFiles bool `json:"scanNetworkFiles"`
} `json:"miscellaneous"`
Action struct {
WhenInfected struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"whenInfected"`
WhenSuspect struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"whenSuspect"`
WhenRootKitAction int `json:"whenRootKitAction"`
} `json:"action"`
Archives struct {
Enable bool `json:"enable"`
Settings struct {
LimitArchiveSize int `json:"limitArchiveSize"`
MaximumArchiveDepth int `json:"maximumArchiveDepth"`
} `json:"settings"`
ScanEmail bool `json:"scanEmail"`
} `json:"archives"`
} `json:"scanSettings"`
} `json:"contextualScan"`
} `json:"onDemand"`
AntiExploit struct {
Enable bool `json:"enable"`
PredefinedApplications []struct {
Details struct {
ApplicationName string `json:"applicationName"`
Status int `json:"status"`
ProcessName []string `json:"processName"`
} `json:"details"`
ExploitDetectionTechniques []struct {
Enable bool `json:"enable"`
Name int `json:"name"`
Action int `json:"action"`
} `json:"exploitDetectionTechniques"`
} `json:"predefinedApplications"`
CustomApplications []interface{} `json:"customApplications"`
SystemWideDetections struct {
PrivilegeEscalationStatus bool `json:"privilegeEscalationStatus"`
PrivilegeEscalation int `json:"privilegeEscalation"`
LsassMemoryAccessFromUnknownProcess int `json:"lsassMemoryAccessFromUnknownProcess"`
LsassMemoryAccessFromUnknownProcessStatus bool `json:"lsassMemoryAccessFromUnknownProcessStatus"`
} `json:"systemWideDetections"`
Linux struct {
SystemWideDetections struct {
CredentialsStatus bool `json:"credentialsStatus"`
Credentials int `json:"credentials"`
PtraceStatus bool `json:"ptraceStatus"`
Ptrace int `json:"ptrace"`
NamespaceStatus bool `json:"namespaceStatus"`
Namespace int `json:"namespace"`
CorruptionStatus bool `json:"corruptionStatus"`
Corruption int `json:"corruption"`
PermissionsStatus bool `json:"permissionsStatus"`
Permissions int `json:"permissions"`
} `json:"systemWideDetections"`
} `json:"linux"`
} `json:"antiExploit"`
Settings struct {
ActivateExclusions struct {
Enable bool `json:"enable"`
ExclusionsItems []interface{} `json:"exclusionsItems"`
UseVendorExclusionLists bool `json:"useVendorExclusionLists"`
SelectedVendorExclusionLists []interface{} `json:"selectedVendorExclusionLists"`
ExclusionsLists []interface{} `json:"exclusionsLists"`
UseExclusionLists bool `json:"useExclusionLists"`
} `json:"activateExclusions"`
UseBuiltInExclusions bool `json:"useBuiltInExclusions"`
DeleteFilesOlderThan int `json:"deleteFilesOlderThan"`
SubmitQuarantined struct {
Enable bool `json:"enable"`
Hours int `json:"hours"`
} `json:"submitQuarantined"`
RescanQuarantine bool `json:"rescanQuarantine"`
CopyFilesToQuarantineBeforeDisinfect bool `json:"copyFilesToQuarantineBeforeDisinfect"`
AllowUserQuarantineActions bool `json:"allowUserQuarantineActions"`
CentralizedQuarantine struct {
AutoSubmitToSandboxAnalyzer bool `json:"autoSubmitToSandboxAnalyzer"`
Enable bool `json:"enable"`
ArchivePassword string `json:"archivePassword"`
Location struct {
Path string `json:"path"`
Username string `json:"username"`
Password string `json:"password"`
} `json:"location"`
} `json:"centralizedQuarantine"`
} `json:"settings"`
SecurityServers struct {
AffinityRule bool `json:"affinityRule"`
SvaMpAffinityRules bool `json:"svaMpAffinityRules"`
SvaIps []interface{} `json:"svaIps"`
UseSSL bool `json:"useSSL"`
EnableOnDemandSlots bool `json:"enableOnDemandSlots"`
SvaProxy struct {
Profile int `json:"profile"`
} `json:"svaProxy"`
ServerOrder string `json:"serverOrder"`
} `json:"securityServers"`
} `json:"antimalware"`
NetworkSandboxing struct {
Enabled bool `json:"enabled"`
AnalysisMode int `json:"analysisMode"`
RemediationActions struct {
DefaultAction int `json:"defaultAction"`
FallbackAction int `json:"fallbackAction"`
} `json:"remediationActions"`
Settings struct {
IsCloudSandbox bool `json:"isCloudSandbox"`
IP string `json:"ip"`
Hostname string `json:"hostname"`
EndpointID interface{} `json:"endpointId"`
DetonationProfile int `json:"detonationProfile"`
} `json:"settings"`
Proxy struct {
Enabled bool `json:"enabled"`
Settings struct {
Server string `json:"server"`
Port int `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
} `json:"settings"`
} `json:"proxy"`
ContentPrefiltering struct {
Categories struct {
Applications struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"applications"`
Documents struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"documents"`
Scripts struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"scripts"`
Archives struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"archives"`
Emails struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"emails"`
} `json:"categories"`
ExcludeExtensions []interface{} `json:"excludeExtensions"`
SizeFilter struct {
Enabled bool `json:"enabled"`
FileMinSizeKB int `json:"fileMinSizeKB"`
FileMaxSizeMB int `json:"fileMaxSizeMB"`
} `json:"sizeFilter"`
} `json:"contentPrefiltering"`
} `json:"networkSandboxing"`
SandboxManager struct {
DataRetention int `json:"dataRetention"`
PersistSamples bool `json:"persistSamples"`
} `json:"sandboxManager"`
Ghostr struct {
Enabled bool `json:"enabled"`
SandboxAnalyzerSettings struct {
IP string `json:"ip"`
Hostname string `json:"hostname"`
Fqdn string `json:"fqdn"`
EndpointID interface{} `json:"endpointId"`
DetonationProfile int `json:"detonationProfile"`
} `json:"sandboxAnalyzerSettings"`
Proxy struct {
Enabled bool `json:"enabled"`
Settings struct {
Server string `json:"server"`
Port int `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
} `json:"settings"`
} `json:"proxy"`
ContentPrefiltering struct {
Categories struct {
Applications struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"applications"`
Documents struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"documents"`
Scripts struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"scripts"`
Archives struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"archives"`
Emails struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"emails"`
} `json:"categories"`
ExcludeExtensions []interface{} `json:"excludeExtensions"`
SizeFilter struct {
Enabled bool `json:"enabled"`
FileMinSizeKB int `json:"fileMinSizeKB"`
FileMaxSizeMB int `json:"fileMaxSizeMB"`
} `json:"sizeFilter"`
} `json:"contentPrefiltering"`
} `json:"ghostr"`
IcapSensor struct {
Enabled bool `json:"enabled"`
SandboxAnalyzerSettings struct {
IP string `json:"ip"`
Hostname string `json:"hostname"`
Fqdn string `json:"fqdn"`
EndpointID interface{} `json:"endpointId"`
DetonationProfile int `json:"detonationProfile"`
} `json:"sandboxAnalyzerSettings"`
Proxy struct {
Enabled bool `json:"enabled"`
Settings struct {
Server string `json:"server"`
Port int `json:"port"`
Username string `json:"username"`
Password string `json:"password"`
} `json:"settings"`
} `json:"proxy"`
ContentPrefiltering struct {
Categories struct {
Applications struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"applications"`
Documents struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"documents"`
Scripts struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"scripts"`
Archives struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"archives"`
Emails struct {
Enabled bool `json:"enabled"`
Level int `json:"level"`
} `json:"emails"`
} `json:"categories"`
ExcludeExtensions []interface{} `json:"excludeExtensions"`
SizeFilter struct {
Enabled bool `json:"enabled"`
FileMinSizeKB int `json:"fileMinSizeKB"`
FileMaxSizeMB int `json:"fileMaxSizeMB"`
} `json:"sizeFilter"`
SubmitFilesMarkedAsMalware bool `json:"submitFilesMarkedAsMalware"`
} `json:"contentPrefiltering"`
} `json:"icapSensor"`
Firewall struct {
Settings struct {
Enable bool `json:"enable"`
BlockPortScan bool `json:"blockPortScan"`
AllowInternetConnectionSharing bool `json:"allowInternetConnectionSharing"`
MonitorWiFiConnections bool `json:"monitorWiFiConnections"`
LogVerbosity struct {
Enable bool `json:"enable"`
Level int `json:"level"`
} `json:"logVerbosity"`
InstructionsDetectionSystem struct {
Enable bool `json:"enable"`
Profile int `json:"profile"`
} `json:"instructionsDetectionSystem"`
} `json:"settings"`
Network struct {
Adapters []struct {
Type string `json:"type"`
NetworkType int `json:"networkType"`
StealthMode int `json:"stealthMode"`
} `json:"adapters"`
} `json:"network"`
Advanced struct {
ProtectionLevel int `json:"protectionLevel"`
CreateAgresiveRules bool `json:"createAgresiveRules"`
CreateRulesForAppsBlockedByIDS bool `json:"createRulesForAppsBlockedByIDS"`
MonitorProcessChanges bool `json:"monitorProcessChanges"`
IgnoreSignedProcesses bool `json:"ignoreSignedProcesses"`
Rule []struct {
RuleID string `json:"ruleId"`
DefaultRule int `json:"defaultRule"`
Type int `json:"type"`
RuleType int `json:"ruleType"`
Details struct {
Name string `json:"name"`
ApplictionPath string `json:"applictionPath"`
CommandLine string `json:"commandLine"`
ApplicationMd5 string `json:"applicationMd5"`
} `json:"details"`
Settings struct {
LocalAddress struct {
Any bool `json:"any"`
PortRange string `json:"portRange"`
} `json:"localAddress"`
RemoteAddress struct {
Any bool `json:"any"`
PortRange string `json:"portRange"`
} `json:"remoteAddress"`
DirectlyConnected struct {
Enable bool `json:"enable"`
} `json:"directlyConnected"`
Protocol int `json:"protocol"`
CustomProtocol string `json:"customProtocol"`
Direction int `json:"direction"`
IPVersion int `json:"ipVersion"`
} `json:"settings"`
Permission struct {
Home bool `json:"home"`
Public bool `json:"public"`
SetPermission int `json:"setPermission"`
} `json:"permission"`
} `json:"rule"`
} `json:"advanced"`
} `json:"firewall"`
ContentControl struct {
WebAccess struct {
Enable bool `json:"enable"`
ProfileType int `json:"profileType"`
UseExceptions bool `json:"useExceptions"`
WebRules []interface{} `json:"webRules"`
Scheduler []interface{} `json:"scheduler"`
} `json:"webAccess"`
WebCategoriesFilter struct {
Enable bool `json:"enable"`
ProfileType int `json:"profileType"`
TreatAsExceptions bool `json:"treatAsExceptions"`
EnableDetailedAlerts bool `json:"enableDetailedAlerts"`
} `json:"webCategoriesFilter"`
Antiphishing struct {
Enable bool `json:"enable"`
DefaultAction int `json:"defaultAction"`
Settings struct {
ProtectionAgainstFraud bool `json:"protectionAgainstFraud"`
ProtectionAgainstPhishing bool `json:"protectionAgainstPhishing"`
} `json:"settings"`
} `json:"antiphishing"`
Application struct {
Enable bool `json:"enable"`
Rules []interface{} `json:"rules"`
} `json:"application"`
DataProtection struct {
Enable bool `json:"enable"`
Rules []interface{} `json:"rules"`
Exclusions []interface{} `json:"exclusions"`
} `json:"dataProtection"`
Traffic struct {
Enable bool `json:"enable"`
EnableExclusions bool `json:"enableExclusions"`
TrafficScan struct {
IncomingEmails bool `json:"incomingEmails"`
OutgoingEmails bool `json:"outgoingEmails"`
WebTraffic bool `json:"webTraffic"`
EmailTraffic bool `json:"emailTraffic"`
} `json:"trafficScan"`
Exclusions []interface{} `json:"exclusions"`
} `json:"traffic"`
NetworkMonitor struct {
Enable bool `json:"enable"`
AttackTechniques []struct {
Enable bool `json:"enable"`
Name int `json:"name"`
Action int `json:"action"`
} `json:"attackTechniques"`
} `json:"networkMonitor"`
} `json:"contentControl"`
ApplicationControl struct {
General struct {
Enable bool `json:"enable"`
ReportOnly bool `json:"reportOnly"`
} `json:"general"`
StartRules []interface{} `json:"startRules"`
} `json:"applicationControl"`
Exchange struct {
UserGroups []interface{} `json:"userGroups"`
BlackList struct {
Enable bool `json:"enable"`
List []interface{} `json:"list"`
} `json:"blackList"`
Quarantine struct {
DeleteFilesOlderThan int `json:"deleteFilesOlderThan"`
} `json:"quarantine"`
Antimalware struct {
Enable bool `json:"enable"`
Settings struct {
AppendFooter bool `json:"appendFooter"`
FooterText string `json:"footerText"`
InfectedText string `json:"infectedText"`
QuarantinedText string `json:"quarantinedText"`
UnscannableInfectedText string `json:"unscannableInfectedText"`
UnscannableQuarantinedText string `json:"unscannableQuarantinedText"`
} `json:"settings"`
Rules []struct {
Name string `json:"name"`
Active bool `json:"active"`
Default bool `json:"default"`
Scope struct {
ApplyTo int `json:"applyTo"`
From int `json:"from"`
To int `json:"to"`
} `json:"scope"`
Settings struct {
ScanMode int `json:"scanMode"`
Extensions []interface{} `json:"extensions"`
MaximumSizeEnabled bool `json:"maximumSizeEnabled"`
MaximumSize int `json:"maximumSize"`
MaximumDepthEnabled bool `json:"maximumDepthEnabled"`
MaximumDepth int `json:"maximumDepth"`
ScanPUA bool `json:"scanPUA"`
} `json:"settings"`
Actions struct {
Infected struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"infected"`
Suspected struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"suspected"`
Unscannable struct {
Action int `json:"action"`
Then int `json:"then"`
} `json:"unscannable"`
StopIfMatched bool `json:"stopIfMatched"`
} `json:"actions"`
} `json:"rules"`
Exclusions []interface{} `json:"exclusions"`
ScanTasks []interface{} `json:"scanTasks"`
} `json:"antimalware"`
Antispoofing struct {
Enable bool `json:"enable"`
DomainIPList []interface{} `json:"domainIpList"`
} `json:"antispoofing"`
Antispam struct {
Enable bool `json:"enable"`
Settings struct {
RblDNSAddress string `json:"rblDnsAddress"`
RblDNSMsTimeout int `json:"rblDnsMsTimeout"`
RblServers []interface{} `json:"rblServers"`
} `json:"settings"`
WhiteList struct {
Enable bool `json:"enable"`
List []interface{} `json:"list"`
} `json:"whiteList"`
Rules []struct {
Name string `json:"name"`
Default bool `json:"default"`
Active bool `json:"active"`
Scope struct {
ApplyTo int `json:"applyTo"`
From int `json:"from"`
To int `json:"to"`
} `json:"scope"`
Aggressivity int `json:"aggressivity"`
Filters struct {
Asian bool `json:"asian"`
Cyrillic bool `json:"cyrillic"`
FapMaterial bool `json:"fapMaterial"`
URL bool `json:"url"`
Rbl bool `json:"rbl"`
Cloud bool `json:"cloud"`
Heuristic bool `json:"heuristic"`
} `json:"filters"`
CheckAuthConnections bool `json:"checkAuthConnections"`
Actions struct {
Type int `json:"type"`
ExchangeSCL bool `json:"exchangeSCL"`
ModifySubject bool `json:"modifySubject"`
ModifySubjectText string `json:"modifySubjectText"`
AppendHeader bool `json:"appendHeader"`
HeaderName string `json:"headerName"`
HeaderValue string `json:"headerValue"`
SaveMailToDisk bool `json:"saveMailToDisk"`
ArchiveToAccount bool `json:"archiveToAccount"`
StopIfMatched bool `json:"stopIfMatched"`
} `json:"actions"`
} `json:"rules"`
} `json:"antispam"`
ContentControl struct {
AttachmentFiltering struct {
Enable bool `json:"enable"`
Settings struct {
ReplacementText string `json:"replacementText"`
} `json:"settings"`
Exclusions struct {
TrustedSenders []interface{} `json:"trustedSenders"`
TrustedRecipients []interface{} `json:"trustedRecipients"`
ExcludeOnlyIfAllRecipientsAreTrusted bool `json:"excludeOnlyIfAllRecipientsAreTrusted"`
} `json:"exclusions"`
Rules []interface{} `json:"rules"`
} `json:"attachmentFiltering"`
ContentFiltering struct {
Enable bool `json:"enable"`
Exclusions struct {
TrustedSenders []interface{} `json:"trustedSenders"`
TrustedRecipients []interface{} `json:"trustedRecipients"`
ExcludeOnlyIfAllRecipientsAreTrusted bool `json:"excludeOnlyIfAllRecipientsAreTrusted"`
} `json:"exclusions"`
Rules []interface{} `json:"rules"`
} `json:"contentFiltering"`
} `json:"contentControl"`
} `json:"exchange"`
DeviceControl struct {
DataLossPrevention struct {
Enable bool `json:"enable"`
Rules []struct {
DeviceClass int `json:"deviceClass"`
RuleName string `json:"ruleName"`
ProductIds []interface{} `json:"productIds"`
DeviceIds []interface{} `json:"deviceIds"`
Permissions struct {
ALL int `json:"ALL"`
PCI int `json:"PCI"`
PCMCIA int `json:"PCMCIA"`
USB int `json:"USB"`
UNKNOWN int `json:"UNKNOWN"`
} `json:"permissions"`
} `json:"rules"`
} `json:"dataLossPrevention"`
DataLossPreventionExceptions struct {
Enable bool `json:"enable"`
Rules []interface{} `json:"rules"`
} `json:"dataLossPreventionExceptions"`
} `json:"deviceControl"`
Relay struct {
Communication struct {
CloudServicesProxy struct {
Profile int `json:"profile"`
} `json:"cloudServicesProxy"`
ApplianceProxy struct {
Profile int `json:"profile"`
} `json:"applianceProxy"`
} `json:"communication"`
Update struct {
UpdateInterval struct {
Enable bool `json:"enable"`
Hours int `json:"hours"`
} `json:"updateInterval"`
DownloadFolder string `json:"downloadFolder"`
UpdateLocations struct {
Enable bool `json:"enable"`
Locations []struct {
Server string `json:"server"`
UseProxy bool `json:"useProxy"`
} `json:"locations"`
} `json:"updateLocations"`
} `json:"update"`
} `json:"relay"`
Nsx struct {
Enabled bool `json:"enabled"`
Name interface{} `json:"name"`
Default bool `json:"default"`
} `json:"nsx"`
Encryption struct {
Enabled bool `json:"enabled"`
Mode int `json:"mode"`
EncryptPolicy struct {
Tpm struct {
ShouldAskForPassword bool `json:"shouldAskForPassword"`
} `json:"tpm"`
} `json:"encryptPolicy"`
Exclusions struct {
Enabled bool `json:"enabled"`
Items []interface{} `json:"items"`
} `json:"exclusions"`
} `json:"encryption"`
Hvi struct {
UserSpaceMemoryIntrospection struct {
Enabled bool `json:"enabled"`
ApplicationCrashes bool `json:"applicationCrashes"`
ConnectionEvents bool `json:"connectionEvents"`
Rules []struct {
RuleName string `json:"ruleName"`
Type int `json:"type"`
Processes []string `json:"processes"`
MonitoringMode int `json:"monitoringMode"`
MonitoringOptions struct {
DllHooks bool `json:"dllHooks"`
ExeUnpackAttemtps bool `json:"exeUnpackAttemtps"`
ProcessRemoteWrites bool `json:"processRemoteWrites"`
Exploits bool `json:"exploits"`
WinSockHooking bool `json:"winSockHooking"`
DoubleAgentPrevention bool `json:"doubleAgentPrevention"`
} `json:"monitoringOptions"`
Actions struct {
PrimaryAction int `json:"primaryAction"`
RemediationAction int `json:"remediationAction"`
BackupRemediationAction int `json:"backupRemediationAction"`
} `json:"actions"`
} `json:"rules"`
} `json:"userSpaceMemoryIntrospection"`
KernelSpaceMemoryIntrospection struct {
Enabled bool `json:"enabled"`
MonitoringMode int `json:"monitoringMode"`
MonitoringOptions struct {
ControlRegisters bool `json:"controlRegisters"`
ModelSpecificRegisters bool `json:"modelSpecificRegisters"`
IdtOrGdtIntegrity bool `json:"idtOrGdtIntegrity"`
AntimalwareDrivers bool `json:"antimalwareDrivers"`
XenDrivers bool `json:"xenDrivers"`
} `json:"monitoringOptions"`
Actions struct {
PrimaryAction int `json:"primaryAction"`
RemediationAction int `json:"remediationAction"`
BackupRemediationAction int `json:"backupRemediationAction"`
} `json:"actions"`
ForensicOptions struct {
OsFailures bool `json:"osFailures"`
DriverEvents bool `json:"driverEvents"`
} `json:"forensicOptions"`
} `json:"kernelSpaceMemoryIntrospection"`
Exclusions struct {
Enabled bool `json:"enabled"`
Items []interface{} `json:"items"`
} `json:"exclusions"`
CustomTools struct {
Enabled bool `json:"enabled"`
Tools []interface{} `json:"tools"`
} `json:"customTools"`
} `json:"hvi"`
StorageProtection struct {
Icap struct {
Enabled bool `json:"enabled"`
ServiceName string `json:"serviceName"`
EnablePort bool `json:"enablePort"`
ListenPort int `json:"listenPort"`
EnableSslPort bool `json:"enableSslPort"`
ListenSslPort int `json:"listenSslPort"`
ArchiveScan struct {
Enabled bool `json:"enabled"`
ArchiveMaxSize int `json:"archiveMaxSize"`
ArchiveMaxDepth int `json:"archiveMaxDepth"`
} `json:"archiveScan"`
CongestionControl struct {
Mode int `json:"mode"`
MaxConnections int `json:"maxConnections"`
} `json:"congestionControl"`
ScanAction struct {
DefaultAction int `json:"defaultAction"`
} `json:"scanAction"`
} `json:"icap"`
Exclusions struct {
Enabled bool `json:"enabled"`
ExclusionItems []interface{} `json:"exclusionItems"`