-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathInvoke-ConfigManBearPigUnitTests.ps1
More file actions
2019 lines (1868 loc) · 64.2 KB
/
Invoke-ConfigManBearPigUnitTests.ps1
File metadata and controls
2019 lines (1868 loc) · 64.2 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
# PowerShell SCCM Collector Unit Test Kit for BloodHound OpenGraph
# by Chris Thompson (@_Mayyhem) at SpecterOps
#
# Required Permissions:
# - Full Administrator security role in SCCM
# - Local Administrator on all hosts of SCCM site system roles
#
# Usage:
# - Use against https://github.com/Mayyhem/ludus_sccm
# - Run:
# ./Invoke-ConfigManBearPigUnitTests.ps1 -DisablePossibleEdges
[CmdletBinding()]
param(
# Path to the enumeration script
[Parameter(Mandatory=$false)]
[string]$EnumerationScript = ".\ConfigManBearPig.ps1",
# Path to the output folder
[Parameter(Mandatory=$false)]
[ValidateSet("All", "Setup", "Test", "Teardown")]
[string]$Action = "All",
[Parameter(Mandatory=$false)]
[string]$Domain = "mayyhem.com",
# Collection method to use (default: AdminService)
[Parameter(Mandatory=$false)]
[string]$CollectionMethods,# = 'LDAP,DNS,RemoteRegistry,MSSQL,HTTP,SMB',
#[string]$CollectionMethods = 'AdminService',
[Parameter(Mandatory=$false)]
[switch]$DisablePossibleEdges,
[Parameter(Mandatory=$false)]
[switch]$EnableBadOpsec,
[Parameter(Mandatory=$false)]
[switch]$ShowCleartextPasswords,
# SMS Provider FQDN
[Parameter(Mandatory=$false)]
[string]$SmsProvider,# = 'cas-pss.mayyhem.com',
[Parameter(Mandatory=$false)]
[string]$LogFile = "ConfigManBearPig_UnitTests_output.log",
# Limit tests to a single edge type for focused debugging
[Parameter(Mandatory=$false)]
[string]$LimitToEdgeType,
# Enable detailed debug output for troubleshooting test failures
[Parameter(Mandatory=$false)]
[switch]$ShowDebug,
# Skip collection phase and parse the most recent ZIP file
[Parameter(Mandatory=$false)]
[switch]$SkipCollection
)
#region Logging Functions
function Write-TestLog {
param(
[string]$Message,
[ValidateSet("Info", "Success", "Warning", "Error", "Test", "Verbose")]
[string]$Level = "Info"
)
$timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
$logMessage = "$timestamp [$Level] $Message"
# Console output with colors
switch ($Level) {
"Success" { Write-Host $Message -ForegroundColor Green }
"Warning" { Write-Host $Message -ForegroundColor Yellow }
"Error" { Write-Host $Message -ForegroundColor Red }
"Test" { Write-Host $Message -ForegroundColor Cyan }
"Verbose" { Write-Host $Message -ForegroundColor Magenta }
default { Write-Host $Message }
}
# File output
if ($LogFile) {
$logMessage | Out-File -FilePath $LogFile -Append -Encoding UTF8
}
}
#endregion
$script:EdgeTypes = @(
#AdminTo,
"LocalAdminRequired",
"CoerceAndRelayToAdminService",
"CoerceAndRelayToMSSQL",
"CoerceAndRelaytoSMB",
"HasSession",
"MSSQL_Contains",
"MSSQL_ControlDB",
"MSSQL_ControlServer",
"MSSQL_ExecuteOnHost",
"MSSQL_GetAdminTGS",
"MSSQL_GetTGS",
"MSSQL_HasLogin",
"MSSQL_HostFor",
"MSSQL_IsMappedTo",
"MSSQL_MemberOf",
"MSSQL_ServiceAccountFor",
"SameHostAs",
"SCCM_AdminsReplicatedTo",
"SCCM_AllPermissions",
"SCCM_ApplicationAdministrator",
"SCCM_AssignAllPermissions",
"SCCM_AssignSpecificPermissions",
"SCCM_Contains",
"SCCM_FullAdministrator",
"SCCM_HasADLastLogonUser",
"SCCM_HasClient",
"SCCM_HasCurrentUser",
"SCCM_HasMember",
"SCCM_HasNetworkAccessAccount",
"SCCM_HasPrimaryUser",
"SCCM_HasStoredAccount",
"SCCM_IsAssigned",
"SCCM_IsMappedTo"
)
$script:NodeTypes = @(
"Computer",
"Group",
"Host",
"User",
"MSSQL_Database",
"MSSQL_DatabaseRole",
"MSSQL_DatabaseUser",
"MSSQL_Login",
"MSSQL_Server",
"MSSQL_ServerRole",
"SCCM_AdminUser",
"SCCM_ClientDevice",
"SCCM_Collection",
"SCCM_SecurityRole",
"SCCM_Site"
)
$script:ExpectedEdges = @(
######################################################################################################
# AdminTo (temporarily LocalAdminRequired due to lack of OpenGraph support for post-processed edges) #
######################################################################################################
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The CAS primary site server has local administrator rights on the CAS site database server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "cas-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "cas-db.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The CAS primary site server has local administrator rights on the service connection point server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "cas-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "cas-scp.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The PS1 primary site server has local administrator rights on the site database server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-db.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The PS1 primary site server has local administrator rights on the SMS Provider server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-sms.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The PS1 primary site server has local administrator rights on the management point server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-mp.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The PS1 primary site server has local administrator rights on the distribution point server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-dp.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The PS1 primary site server has local administrator rights on the passive site server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-psv.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Count = 1
Description = "The PS1 passive site server has local administrator rights on the primary site server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-psv.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
},
@{
Kind = "LocalAdminRequired"
Negative = $true
Description = "The PS2 primary site server does not have local administrator rights on the PS1 site database server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps2-pss.$Domain"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-db.$Domain"
}
}
},
################################
# CoerceAndRelayToAdminService #
################################
@{
Kind = "CoerceAndRelayToAdminService"
Count = 1
Description = "Authenticated Users group can coerce the PS1 primary site server and relay authentication to the AdminService on the PS1 SMS Provider, coerce the PS1 primary site server and relay authentication to the AdminService on the PS1 passive site server, coerce the PS1 passive site server and relay authentication to the AdminService on the PS1 primary site server, and coerce the PS1 passive site server and relay authentication to the AdminService on the PS1 SMS Provider"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("SCCM_Site")
Properties = @{
id = "PS1"
}
}
Properties = @{
coercionVictimAndRelayTargetPairs = @("Coerce ps1-psv.mayyhem.com, relay to ps1-pss.mayyhem.com","Coerce ps1-pss.mayyhem.com, relay to ps1-psv.mayyhem.com","Coerce ps1-pss.mayyhem.com, relay to ps1-sms.mayyhem.com","Coerce ps1-psv.mayyhem.com, relay to ps1-sms.mayyhem.com")
}
},
#########################
# CoerceAndRelayToMSSQL #
#########################
@{
Kind = "CoerceAndRelayToMSSQL"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the MSSQL service on the CAS site database server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "MAYYHEM\CAS-PSS$@*:1433"
}
}
Properties = @{
coercionVictimAndRelayTargetPairs = @("Coerce cas-pss.mayyhem.com, relay to cas-db.mayyhem.com:1433")
}
},
@{
Kind = "CoerceAndRelayToMSSQL"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the MSSQL service on the PS1 site database server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "MAYYHEM\PS1-PSS$@*:1433"
}
}
Properties = @{
coercionVictimAndRelayTargetPairs = @("Coerce ps1-pss.mayyhem.com, relay to ps1-db.mayyhem.com:1433")
}
},
@{
Kind = "CoerceAndRelayToMSSQL"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the MSSQL service on the PS1 site database server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "MAYYHEM\PS1-SMS$@*:1433"
}
}
Properties = @{
coercionVictimAndRelayTargetPairs = @("Coerce ps1-sms.mayyhem.com, relay to ps1-db.mayyhem.com:1433")
}
},
@{
Kind = "CoerceAndRelayToMSSQL"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the MSSQL service on the PS1 site database server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "MAYYHEM\PS1-PSV$@*:1433"
}
}
Properties = @{
coercionVictimAndRelayTargetPairs = @("Coerce ps1-psv.mayyhem.com, relay to ps1-db.mayyhem.com:1433")
}
},
###########################
# CoerceAndRelayToSMB #
###########################
@{
Kind = "CoerceAndRelayToSMB"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the SMB service on the PS1 SMS Provider"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-sms.$Domain"
}
}
},
@{
Kind = "CoerceAndRelayToSMB"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the SMB service on the PS1 site database server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-db.$Domain"
}
}
},
@{
Kind = "CoerceAndRelayToSMB"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the SMB service on the PS1 primary site server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-pss.$Domain"
}
}
},
@{
Kind = "CoerceAndRelayToSMB"
Count = 1
Description = "Authenticated Users group can coerce and relay authentication to the SMB service on the PS1 passive site server"
Source = @{
Kinds = @("Group", "Base")
Properties = @{
id = "*-S-1-5-11"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-psv.$Domain"
}
}
},
#>
##############
# HasSession #
##############
@{
Kind="HasSession"
Count = 1
Description = "The MSSQL service account has an active session on the CAS site database server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "cas-db.$Domain"
}
}
Target = @{
Kinds = @("User", "Base")
Properties = @{
samAccountName = "sqlsccmsvc"
id = "S-1-5-21-*"
}
}
},
@{
Kind="HasSession"
Count = 1
Description = "The MSSQL service account has an active session on the PS1 site database server"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-db.$Domain"
}
}
Target = @{
Kinds = @("User", "Base")
Properties = @{
samAccountName = "sqlsccmsvc"
id = "S-1-5-21-*"
}
}
},
##################
# MSSQL_Contains #
##################
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The CAS site database MSSQL server contains the CM_<SiteCode> database"
Source = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
Target = @{
Kinds = @("MSSQL_Database")
Properties = @{
name = "CM_CAS"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The CAS site database MSSQL server contains the CAS-PSS$ login"
Source = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
name = "CAS-DB*"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "*cas-pss$@*:1433"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The CAS site database contains the db_owner database role"
Source = @{
Kinds = @("MSSQL_Database")
Properties = @{
id = "*:1433\CM_CAS"
}
}
Target = @{
Kinds = @("MSSQL_DatabaseRole")
Properties = @{
id = "db_owner@*:1433\CM_CAS"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The CAS site database contains the CAS-PSS$ user"
Source = @{
Kinds = @("MSSQL_Database")
Properties = @{
id = "*:1433\CM_CAS"
}
}
Target = @{
Kinds = @("MSSQL_DatabaseUser")
Properties = @{
id = "*cas-pss$@*:1433\CM_CAS"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The PS1 site database MSSQL server contains the CM_<SiteCode> database"
Source = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
Target = @{
Kinds = @("MSSQL_Database")
Properties = @{
name = "CM_PS1"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The PS1 site database MSSQL server contains the PS1-PSS$ login"
Source = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "*ps1-pss$@*:1433"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The PS1 site database contains the db_owner database role"
Source = @{
Kinds = @("MSSQL_Database")
Properties = @{
id = "*:1433\CM_PS1"
}
}
Target = @{
Kinds = @("MSSQL_DatabaseRole")
Properties = @{
id = "db_owner@*:1433\CM_PS1"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 1
Description = "The PS1 site database contains the PS1-PSS$ user"
Source = @{
Kinds = @("MSSQL_Database")
Properties = @{
id = "*:1433\CM_PS1"
}
}
Target = @{
Kinds = @("MSSQL_DatabaseUser")
Properties = @{
id = "*ps1-pss$@*:1433\CM_PS1"
}
}
},
@{
Kind="MSSQL_Contains"
Count = 3
Description = "The MSSQL servers (cas-db, ps1-db, and ps1-psv) contain the sysadmin server role"
Source = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
Target = @{
Kinds = @("MSSQL_ServerRole")
Properties = @{
id = "sysadmin@*:1433"
}
}
},
###################
# MSSQL_ControlDB #
###################
@{
Kind="MSSQL_ControlDB"
Count = 2
Description = "The db_owner MSSQL database role controls the site database on cas-db and ps1-db"
Source = @{
Kinds = @("MSSQL_DatabaseRole")
Properties = @{
id = "db_owner@*:1433\CM_*"
}
}
Target = @{
Kinds = @("MSSQL_Database")
Properties = @{
id = "*:1433\CM_*"
}
}
},
#######################
# MSSQL_ControlServer #
#######################
@{
Kind="MSSQL_ControlServer"
Count = 3
Description = "The sysadmin MSSQL server role controls the server instance on cas-db, ps1-db, and ps1-psv"
Source = @{
Kinds = @("MSSQL_ServerRole")
Properties = @{
id = "sysadmin@*:1433"
}
}
Target = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
},
#######################
# MSSQL_ExecuteOnHost #
#######################
@{
Kind="MSSQL_ExecuteOnHost"
Count = 3
Description = "The MSSQL servers (cas-db, ps1-db, and ps1-psv) can execute commands on their hosts"
Source = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
Target = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
}
}
},
#####################
# MSSQL_GetAdminTGS #
#####################
@{
Kind="MSSQL_GetAdminTGS"
Count = 2
Description = "The site database MSSQL service account can request a TGS for any domain login on the server instance"
Source = @{
Kinds = @("User", "Base")
Properties = @{
samAccountName = "sqlsccmsvc"
id = "S-1-5-21-*"
}
}
Target = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
},
################
# MSSQL_GetTGS #
################
@{
Kind="MSSQL_GetTGS"
Count = 4
Description = "The site database MSSQL service account can request a TGS for any domain login on the server instance (CAS-PSS, PS1-PSS, PS1-PSV, and PS1-SMS)"
Source = @{
Kinds = @("User", "Base")
Properties = @{
samAccountName = "sqlsccmsvc"
id = "S-1-5-21-*"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "*$:1433"
}
}
},
##################
# MSSQL_HasLogin #
##################
@{
Kind="MSSQL_HasLogin"
Count = 4
Description = "The primary and passive site server and SMS Provider computers have logins on the MSSQL server instances (CAS-PSS -> CAS-DB, PS1-PSS -> PS1-DB, PS1-SMS -> PS1-DB, PS1-PSV -> PS1-DB)"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
}
}
Target = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "*$:1433"
}
}
},
#################
# MSSQL_HostFor #
#################
@{
Kind="MSSQL_HostFor"
Count = 3
Description = "The MSSQL server computers (cas-db, ps1-db, and ps1-psv) host the MSSQL server instances"
Source = @{
Kinds = @("Computer", "Base")
Properties = @{
id = "S-1-5-21-*"
}
}
Target = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
},
####################
# MSSQL_IsMappedTo #
####################
@{
Kind="MSSQL_IsMappedTo"
Count = 4
Description = "The primary and passive site server and SMS Provider MSSQL server logins (CAS-PSS, PS1-PSS, PS1-PSV, and PS1-SMS) are mapped to database users in the site databases"
Source = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "*$:1433"
}
}
Target = @{
Kinds = @("MSSQL_DatabaseUser")
Properties = @{
id = "*$@*:1433\CM_*"
}
}
},
##################
# MSSQL_MemberOf #
##################
@{
Kind="MSSQL_MemberOf"
Count = 4
Description = "The primary and passive site server and SMS Provider MSSQL database users (CAS-PSS, PS1-PSS, PS1-PSV, and PS1-SMS) are members of the db_owner database role in the site databases"
Source = @{
Kinds = @("MSSQL_DatabaseUser")
Properties = @{
id = "*$@*:1433\CM_*"
}
}
Target = @{
Kinds = @("MSSQL_DatabaseRole")
Properties = @{
id = "db_owner@*:1433\CM_*"
}
}
},
@{
Kind="MSSQL_MemberOf"
Count = 4
Description = "The primary and passive site server and SMS Provider MSSQL server logins (CAS-PSS, PS1-PSS, PS1-PSV, and PS1-SMS) are members of the sysadmin server role on the MSSQL server instances"
Source = @{
Kinds = @("MSSQL_Login")
Properties = @{
id = "*$:1433"
}
}
Target = @{
Kinds = @("MSSQL_ServerRole")
Properties = @{
id = "sysadmin@*:1433"
}
}
}
###########################
# MSSQL_ServiceAccountFor #
###########################
@{
Kind="MSSQL_ServiceAccountFor"
Count = 2
Description = "The site database MSSQL service account is the service account for the MSSQL server instances (CAS and PS1 primary and passive)"
Source = @{
Kinds = @("User", "Base")
Properties = @{
samAccountName = "sqlsccmsvc"
id = "S-1-5-21-*"
}
}
Target = @{
Kinds = @("MSSQL_Server")
Properties = @{
id = "*:1433"
}
}
},
##############
# SameHostAs #
##############
@{
Kind="SameHostAs"
Count = 1
Description = "The PS1 client device is the same host as the domain joined computer (bi-directional)"
Source = @{
Kinds = @("SCCM_ClientDevice")
Properties = @{
id = "GUID:*"
}
}
Target = @{
Kinds = @("Computer")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-dev.$Domain"
}
}
},
@{
Kind="SameHostAs"
Count = 1
Description = "The PS1 client device is the same host as the domain joined computer (bi-directional)"
Source = @{
Kinds = @("Computer")
Properties = @{
id = "S-1-5-21-*"
dNSHostName = "ps1-dev.$Domain"
}
}
Target = @{
Kinds = @("SCCM_ClientDevice")
Properties = @{
id = "GUID:*"
}
}
},
###########################
# SCCM_AdminsReplicatedTo #
###########################
@{
Kind="SCCM_AdminsReplicatedTo"
Count = 1
Description = "The PS1 primary site has the same admins as the CAS primary site"
Source = @{
Kinds = @("SCCM_Site")
Properties = @{
id = "PS1"
}
}
Target = @{
Kinds = @("SCCM_Site")
Properties = @{
id = "CAS"
}
}
},
@{
Kind="SCCM_AdminsReplicatedTo"
Count = 1