-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprotocols.py
2368 lines (2264 loc) · 109 KB
/
protocols.py
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
from structures import *
from services import *
INTERFACES = {
"EPM": RpcInterfaceDefinition(
id="MS-EPM",
metadata=RpcInterfaceMetadata(
name="Endpoint Mapper Protocol",
description=""
),
profiles=[
# TODO
],
uuids=[
RpcUuid(uuid="e1af8308-5d1f-11c9-91a4-08002b14a0fa")
],
named_pipes=[]
),
"MC-CCFG": RpcInterfaceDefinition(
id="MC-CCFG",
metadata=RpcInterfaceMetadata(
name="Server Cluster: Configuration (ClusCfg) Protocol",
description=(
"The Server Cluster: Configuration (ClusCfg) Protocol enables users to restore "
"a node that is no longer a configured member of a failover cluster back to its "
"pre-cluster installation state."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/mc-ccfg/9996b3e3-2834-46ce-9883-dcf52f017981",
),
profiles=[
RpcInterfaceProfile(ServiceFeature.FAILOVER_CLUSTERING, RpcProfileType.REMOTE_MANAGEMENT)
],
uuids=[
RpcUuid(uuid="52C80B95-C1AD-4240-8D89-72E9FA84025E", name="IClusCfgAsyncEvictCleanup")
],
named_pipes=[]
),
"MC-IISA": RpcInterfaceDefinition(
id="MC-IISA",
metadata=RpcInterfaceMetadata(
name="Internet Information Services (IIS) Application Host COM Protocol",
description=(
"The Internet Information Services (IIS) Application Host COM Protocol "
"provides read/write access to administrative configuration data that "
"is located on a remote server."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/mc-iisa/488de90f-9710-45fb-b71a-6938733fafb6"
),
profiles=[
RpcInterfaceProfile(ServiceRole.WEB_SERVER, RpcProfileType.REMOTE_MANAGEMENT)
],
uuids=[
RpcUuid(uuid="FA7660F6-7B3F-4237-A8BF-ED0AD0DCBBD9", name="IAppHostWritableAdminManager"),
RpcUuid(uuid="450386DB-7409-4667-935E-384DBBEE2A9E", name="IAppHostPropertySchema"),
RpcUuid(uuid="832A32F7-B3EA-4B8C-B260-9A2923001184", name="IAppHostConfigLocationCollection"),
RpcUuid(uuid="2D9915FB-9D42-4328-B782-1B46819FAB9E", name="IAppHostMethodSchema"),
RpcUuid(uuid="0DD8A158-EBE6-4008-A1D9-B7ECC8F1104B", name="IAppHostSectionGroup"),
RpcUuid(uuid="0716CAF8-7D05-4A46-8099-77594BE91394", name="IAppHostConstantValue"),
RpcUuid(uuid="B80F3C42-60E0-4AE0-9007-F52852D3DBED", name="IAppHostMethodInstance"),
RpcUuid(uuid="0344CDDA-151E-4CBF-82DA-66AE61E97754", name="IAppHostElementSchemaCollection"),
RpcUuid(uuid="8BED2C68-A5FB-4B28-8581-A0DC5267419F", name="IAppHostPropertySchemaCollection"),
RpcUuid(uuid="7883CA1C-1112-4447-84C3-52FBEB38069D", name="IAppHostMethod"),
RpcUuid(uuid="09829352-87C2-418D-8D79-4133969A489D", name="IAppHostChangeHandler"),
RpcUuid(uuid="5B5A68E6-8B9F-45E1-8199-A95FFCCDFFFF", name="IAppHostConstantValueCollection"),
RpcUuid(uuid="9BE77978-73ED-4A9A-87FD-13F09FEC1B13", name="IAppHostAdminManager"),
RpcUuid(uuid="ED35F7A1-5024-4E7B-A44D-07DDAF4B524D", name="IAppHostProperty"),
RpcUuid(uuid="4DFA1DF3-8900-4BC7-BBB5-D1A458C52410", name="IAppHostConfigException"),
RpcUuid(uuid="370AF178-7758-4DAD-8146-7391F6E18585", name="IAppHostConfigLocation"),
RpcUuid(uuid="C8550BFF-5281-4B1E-AC34-99B6FA38464D", name="IAppHostElementCollection"),
RpcUuid(uuid="08A90F5F-0702-48D6-B45F-02A9885A9768", name="IAppHostChildElementCollection"),
RpcUuid(uuid="8F6D760F-F0CB-4D69-B5F6-848B33E9BDC6", name="IAppHostConfigManager"),
RpcUuid(uuid="E7927575-5CC3-403B-822E-328A6B904BEE", name="IAppHostPathMapper"),
RpcUuid(uuid="DE095DB1-5368-4D11-81F6-EFEF619B7BCF", name="IAppHostCollectionSchema"),
RpcUuid(uuid="64FF8CCC-B287-4DAE-B08A-A72CBF45F453", name="IAppHostElement"),
RpcUuid(uuid="EAFE4895-A929-41EA-B14D-613E23F62B71", name="IAppHostPropertyException"),
RpcUuid(uuid="EF13D885-642C-4709-99EC-B89561C6BC69", name="IAppHostElementSchema"),
RpcUuid(uuid="0191775E-BCFF-445A-B4F4-3BDDA54E2816", name="IAppHostPropertyCollection"),
RpcUuid(uuid="31A83EA0-C0E4-4A2C-8A01-353CC2A4C60A", name="IAppHostMappingExtension"),
RpcUuid(uuid="D6C7CD8F-BB8D-4F96-B591-D3A5F1320269", name="IAppHostMethodCollection"),
RpcUuid(uuid="ADA4E6FB-E025-401E-A5D0-C3134A281F07", name="IAppHostConfigFile"),
RpcUuid(uuid="B7D381EE-8860-47A1-8AF4-1F33B2B1F325", name="IAppHostSectionDefinitionCollection"),
RpcUuid(uuid="C5C04795-321C-4014-8FD6-D44658799393", name="IAppHostSectionDefinition"),
],
named_pipes=[]
),
"MC-MQAC": RpcInterfaceDefinition(
id="MC-MQAC",
metadata=RpcInterfaceMetadata(
name="Message Queuing (MSMQ): ActiveX Client Protocol",
description=(
"The Message Queuing (MSMQ): ActiveX Client Protocol is a collection "
"of Distributed Component Object Model (DCOM) interfaces that "
"expose message queuing functionality for use by client applications."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/mc-mqac/5ed096a9-b641-4a5a-b749-7e6937d20f4d"
),
profiles=[
RpcInterfaceProfile(ServiceFeature.MSMQ, RpcProfileType.CORE)
],
uuids=[
# TODO: come on - seriously?
RpcUuid("EBA96B22-2168-11D3-898C-00E02C074F6B"),
RpcUuid("12A30900-7300-11D2-B0E6-00E02C074F6B"),
RpcUuid("EBA96B24-2168-11D3-898C-00E02C074F6B"),
RpcUuid("2CE0C5B0-6E67-11D2-B0E6-00E02C074F6B"),
RpcUuid("EBA96B0E-2168-11D3-898C-00E02C074F6B"),
RpcUuid("B196B285-BAB4-101A-B69C-00AA00341D07"),
RpcUuid("39CE96FE-F4C5-4484-A143-4C2D5D324229"),
RpcUuid("D7D6E07F-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("EBA96B1A-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B18-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B23-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B14-2168-11D3-898C-00E02C074F6B"),
RpcUuid("FD174A80-89CF-11D2-B0F2-00E02C074F6B"),
RpcUuid("F72B9031-2F0C-43E8-924E-E6052CDC493F"),
RpcUuid("D7D6E072-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("D7D6E075-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("0188401C-247A-4FED-99C6-BF14119D7055"),
RpcUuid("EBA96B15-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E07C-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("BE5F0241-E489-4957-8CC4-A452FCF3E23E"),
RpcUuid("EBA96B1C-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E077-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("D7D6E078-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("B196B284-BAB4-101A-B69C-00AA00341D07"),
RpcUuid("D7D6E073-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("D7D6E07D-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("EBA96B1B-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E079-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("D7D6E084-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("EBA96B1F-2168-11D3-898C-00E02C074F6B"),
RpcUuid("33B6D07E-F27D-42FA-B2D7-BF82E11E9374"),
RpcUuid("D7D6E07A-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("0188AC2F-ECB3-4173-9779-635CA2039C72"),
RpcUuid("D7D6E085-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("EF0574E0-06D8-11D3-B100-00E02C074F6B"),
RpcUuid("D7D6E086-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("B196B286-BAB4-101A-B69C-00AA00341D07"),
RpcUuid("D9933BE0-A567-11D2-B0F3-00E02C074F6B"),
RpcUuid("D7AB3341-C9D3-11D1-BB47-0080C7C5A2C0"),
RpcUuid("D7D6E082-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("0FB15084-AF41-11CE-BD2B-204C4F4F5020"),
RpcUuid("D7D6E083-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("EBA96B13-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B1D-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B17-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B20-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E074-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("7FBE7759-5760-444D-B8A5-5E7AB9A84CCE"),
RpcUuid("B196B287-BAB4-101A-B69C-00AA00341D07"),
RpcUuid("EBA96B12-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B1E-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E07E-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("D7D6E081-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("D7D6E07B-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("64C478FB-F9B0-4695-8A7F-439AC94326D3"),
RpcUuid("EBA96B16-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B19-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B10-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B21-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E076-DCCD-11D0-AA4B-0060970DEBAE"),
RpcUuid("EBA96B0F-2168-11D3-898C-00E02C074F6B"),
RpcUuid("EBA96B11-2168-11D3-898C-00E02C074F6B"),
RpcUuid("D7D6E080-DCCD-11D0-AA4B-0060970DEBAE"),
],
named_pipes=[]
),
## TODO: MC-
"MS-ADTG": RpcInterfaceDefinition(
"MS-ADTG",
RpcInterfaceMetadata(
"Remote Data Services (RDS) Transport Protocol",
"",
# note: The functionality supplied by the RDS Transport Protocol has been superseded by SOAP and DCOM
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-adtg/e2d9f59e-28c4-499e-ab81-5b582c1f3bd6"
),
[
# TODO
],
[
RpcUuid("0EAC4842-8763-11CF-A743-00AA00A3F00D", "IDataFactory"),
RpcUuid("070669EB-B52F-11D1-9270-00C04FBBBFB3", "IDataFactory2"),
RpcUuid("4639DB2A-BFC5-11D2-9318-00C04FBBBFB3", "IDataFactory3")
],
named_pipes=[]
),
"MS-BKRP": RpcInterfaceDefinition(
id="MS-BKRP",
metadata=RpcInterfaceMetadata(
name="BackupKey Remote Protocol",
description=(
"This protocol encrypts secret values (such as cryptographic keys) "
"so they can be backed up to storage that is not specially protected, "
"and enables decryption of such values if recovery is necessary."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-bkrp/90b08be4-5175-4177-b4ce-d920d797e3a8"
),
profiles=[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
uuids=[
RpcUuid("3DDE7C30-165D-11D1-AB8F-00805F14DB40", "BackupKey")
],
named_pipes=[
RpcNamedPipe("\\\\pipe\\protected_storage"),
RpcNamedPipe("\\\\pipe\\ntsvcs")
]
),
"MS-BPAU": RpcInterfaceDefinition(
id="MS-BPAU",
metadata=RpcInterfaceMetadata(
name="Background Intelligent Transfer Service (BITS) Peer-Caching: Peer Authentication Protocol",
description=(
"The BITS Peer-Caching: Peer Authentication Protocol allows hosts in an "
"Active Directory domain to exchange self-signed X.509 certificates with "
"enough information to associate those certificates securely with a domain account."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-bpau/ce053264-a500-40df-b963-98d5f911db5d"
),
profiles=[],
uuids=[
RpcUuid("E3D0D746-D2AF-40FD-8A7A-0D7078BB7092", "BitsPeerAuth"),
],
named_pipes=[]
),
"MS-BRWSA": RpcInterfaceDefinition(
id="MS-BRWSA",
metadata=RpcInterfaceMetadata(
name="Common Internet File System (CIFS) Browser Auxiliary Protocol",
description=(
"The Common Internet File System (CIFS) Browser Auxiliary Protocol, "
"which is used by the master browser server to query configuration information "
"for the domains from the domain master browser server."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-brwsa/5995d2f2-fff1-40af-9100-ca67794d50a5"
),
profiles=[
# TODO: confirm
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
uuids=[
RpcUuid("6BFFD098-A112-3610-9833-012892020162", "MS-BRWSA")
],
named_pipes=[]
),
"MS-CAPR": RpcInterfaceDefinition(
id="MS-CAPR",
metadata=RpcInterfaceMetadata(
name="Central Access Policy Identifier (ID) Retrieval Protocol",
description=(
"The Central Access Policy ID Retrieval (CAPR) Protocol is designed "
"to allow an administrative tool running on one computer to remotely "
"query the set of central access control policies configured on another computer."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-capr/66f308bc-ebc7-4870-8b41-d8da9495b222"
),
profiles=[
# TODO: confirm
# RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
uuids=[
RpcUuid("AFC07E2E-311C-4435-808C-C483FFEEC7C9", "lsacap")
],
named_pipes=[]
),
"MS-CMRP": RpcInterfaceDefinition(
id="MS-CMRP",
metadata=RpcInterfaceMetadata(
name="Failover Cluster: Management API (ClusAPI) Protocol",
description=(
"The Failover Cluster: Management API (ClusAPI) Protocol is an "
"RPC-based protocol that is used for remotely managing a cluster."
),
url="https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-cmrp/ba4117c0-530e-4e70-a085-4b4cf5bbf193"
),
profiles=[
RpcInterfaceProfile(ServiceFeature.FAILOVER_CLUSTERING, RpcProfileType.REMOTE_MANAGEMENT)
],
uuids=[
RpcUuid("B97DB8B2-4C63-11CF-BFF6-08002BE23F2F", "MS-CMRP")
],
named_pipes=[]
),
"MS-COM": RpcInterfaceDefinition(
"MS-COM",
RpcInterfaceMetadata(
"Component Object Model Plus (COM+) Protocol",
(
"Specifies the Component Object Model Plus (COM+) Protocol, which consists of a "
"DCOM interface (and DCOM protocol extensions) that is used for adding transactions, "
"implementing synchronization, managing multiple object class configurations, "
"enforcing security, and providing additional functionality and attributes to "
"DCOM-based distributed object applications."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-com/a846e48d-bbc9-4b28-9650-601810cf3af0"
),
[
# TODO: COM
],
[
RpcUuid("97199110-DB2E-11D1-A251-0000F805CA53", "ITransactionStream (IID_ITransactionStream)")
]
),
"MS-COMA": RpcInterfaceDefinition(
"MS-COMA",
RpcInterfaceMetadata(
"Component Object Model Plus (COM+) Remote Administration Protocol",
(
"The Component Object Model Plus (COM+) Remote Administration Protocol enables "
"remote clients to register, import, remove, configure, control, and monitor "
"components and conglomerations for an Object Request Broker (ORB)."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-coma/c5b1ef02-e8f6-4195-9efe-9667928d1bdd"
),
[
# TODO: COM
],
[
RpcUuid("0E3D6630-B46B-11D1-9D2D-006008B0E5CA", "ICatalogTableRead"),
RpcUuid("3F3B1B86-DBBE-11D1-9DA6-00805F85CFE3", "IContainerControl"),
RpcUuid("7F43B400-1A0E-4D57-BBC9-6B0C65F7A889", "IAlternateLaunch"),
RpcUuid("456129E2-1078-11D2-B0F9-00805FC73204", "ICatalogUtils"),
RpcUuid("8DB2180E-BD29-11D1-8B7E-00C04FD7A924", "IRegister"),
RpcUuid("182C40FA-32E4-11D0-818B-00A0C9231C29", "ICatalogSession"),
RpcUuid("971668DC-C3FE-4EA1-9643-0C7230F494A1", "IRegister2"),
RpcUuid("98315903-7BE5-11D2-ADC1-00A02463D6E7", "IReplicationUtil"),
RpcUuid("6C935649-30A6-4211-8687-C4C83E5FE1C7", "IContainerControl2"),
RpcUuid("F131EA3E-B7BE-480E-A60D-51CB2785779E", "IExport2"),
RpcUuid("1F7B1697-ECB2-4CBB-8A0E-75C427F4A6F0", "IImport2"),
RpcUuid("A8927A41-D3CE-11D1-8472-006008B0E5CA", "ICatalogTableInfo"),
RpcUuid("CFADAC84-E12C-11D1-B34C-00C04F990D54", "IExport"),
RpcUuid("1D118904-94B3-4A64-9FA6-ED432666A7B9", "ICatalog64BitSupport"),
RpcUuid("47CDE9A1-0BF6-11D2-8016-00C04FB9988E", "ICapabilitySupport"),
RpcUuid("0E3D6631-B46B-11D1-9D2D-006008B0E5CA", "ICatalogTableWrite"),
RpcUuid("C2BE6970-DF9E-11D1-8B87-00C04FD7A924", "IImport"),
RpcUuid("C726744E-5735-4F08-8286-C510EE638FB6", "ICatalogUtils2"),
]
),
"MS-COMEV": RpcInterfaceDefinition(
"MS-COMEV",
RpcInterfaceMetadata(
"Component Object Model Plus (COM+) Event System Protocol",
(
"The Component Object Model Plus (COM+) Event System Protocol is a protocol that "
"exposes DCOM interfaces for storing and managing configuration data for publishers "
"of events and their respective subscribers on remote computers. This protocol also "
"specifies how to get specific information about a publisher and its subscribers."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-comev/fe6baa92-4e19-49b7-9880-87db94d12299"
),
[
# TODO: COM
],
[
RpcUuid("FB2B72A0-7A68-11D1-88F9-0080C7D771BF", "IEventClass"),
RpcUuid("FB2B72A1-7A68-11D1-88F9-0080C7D771BF", "IEventClass2"),
RpcUuid("7FB7EA43-2D76-4EA8-8CD9-3DECC270295E", "IEventClass3"),
RpcUuid("4E14FB9F-2E22-11D1-9964-00C04FBBB345", "IEventSystem"),
RpcUuid("99CC098F-A48A-4E9C-8E58-965C0AFC19D5", "IEventSystem2"),
RpcUuid("4A6B0E15-2E38-11D1-9965-00C04FBBB345", "IEventSubscription"),
RpcUuid("4A6B0E16-2E38-11D1-9965-00C04FBBB345", "IEventSubscription2"),
RpcUuid("FBC1D17D-C498-43A0-81AF-423DDD530AF6", "IEventSubscription3"),
RpcUuid("F89AC270-D4EB-11D1-B682-00805FC79216", "IEventObjectCollection"),
RpcUuid("A0E8F27A-888C-11D1-B763-00C04FB926AF", "IEventSystemInitialize"),
RpcUuid("F4A07D63-2E25-11D1-9964-00C04FBBB345", "IEnumEventObject"),
]
),
"MS-COMT": RpcInterfaceDefinition(
"MS-COMT",
RpcInterfaceMetadata(
"Component Object Model Plus (COM+) Event System Protocol",
(
"The Component Object Model Plus (COM+) Tracker Service Protocol enables "
"clients to monitor running instances of components."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-comt/e0d5ebcd-66c5-4ce5-ad7e-4f3646c92547"
),
[
# TODO: COM
],
[
RpcUuid("B60040E0-BCF3-11D1-861D-0080C729264D", "IGetTrackingData"),
RpcUuid("23C9DD26-2355-4FE2-84DE-F779A238ADBD", "IProcessDump"),
RpcUuid("4E6CDCC9-FB25-4FD5-9CC5-C9F4B6559CEC", "IComTrackingInfoEvents"),
]
),
"MS-CSRA": RpcInterfaceDefinition(
"MS-CSRA",
RpcInterfaceMetadata(
"Certificate Services Remote Administration Protocol",
(
"The Certificate Services Remote Administration Protocol consists of "
"a set of Distributed Component Object Model (DCOM) interfaces that "
"enable administrative tools to configure the state and policy of "
"a certification authority (CA) on a server."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-csra/40e74714-14bf-4f97-a264-35efbd63a813"
),
[
RpcInterfaceProfile(ServiceRole.CERTIFICATE_SERVICES, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("D99E6E71-FC88-11D0-B498-00A0C90312F3", "ICertAdminD"),
RpcUuid("7FE0D935-DDA6-443F-85D0-1CFB58FE41DD", "ICertAdminD2"),
],
),
"MS-CSVP": RpcInterfaceDefinition(
"MS-CSVP",
RpcInterfaceMetadata(
"Failover Cluster: Setup and Validation Protocol (ClusPrep)",
(
"The Failover Cluster: Setup and Validation Protocol (ClusPrep) remotely "
"configures cluster nodes, cleans up cluster nodes, and validates that hardware "
"and software settings are compatible with Failover Clustering."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-csvp/600931f0-739b-4c09-8ddf-05555438c279"
),
[
RpcInterfaceProfile(ServiceFeature.FAILOVER_CLUSTERING, RpcProfileType.CORE)
],
[
RpcUuid("491260B5-05C9-40D9-B7F2-1F7BDAE0927F", "IClusterSetup"),
RpcUuid("E3C9B851-C442-432B-8FC6-A7FAAFC09D3B", "IClusterUpdate"),
RpcUuid("D6105110-8917-41A5-AA32-8E0AA2933DC9", "IClusterCleanup"),
RpcUuid("85923CA7-1B6B-4E83-A2E4-F5BA3BFBB8A3", "IClusterLog"),
RpcUuid("F1D6C29C-8FBE-4691-8724-F6D8DEAEAFC8", "IClusterFirewall"),
RpcUuid("12108A88-6858-4467-B92F-E6CF4568DFB6", "IClusterStorage2"),
RpcUuid("11942D87-A1DE-4E7F-83FB-A840D9C5928D", "IClusterStorage3"),
RpcUuid("2931C32C-F731-4C56-9FEB-3D5F1C5E72BF", "IClusterNetwork2"),
RpcUuid("C72B09DB-4D53-4f41-8DCC-2D752AB56F7C", "ClusterStorage2"),
RpcUuid("E1568352-586D-43e4-933F-8E6DC4DE317A", "ClusterNetwork2"),
RpcUuid("A6D3E32B-9814-4409-8DE3-CFA673E6D3DE", "ClusterCleanup"),
RpcUuid("04D55210-B6AC-4248-9E69-2A569D1D2AB6", "ClusterSetup"),
RpcUuid("88E7AC6D-C561-4F03-9A60-39DD768F867D", "ClusterLog"),
RpcUuid("3CFEE98C-FB4B-44C6-BD98-A1DB14ABCA3F", "ClusterFirewall"),
RpcUuid("4142DD5D-3472-4370-8641-DE7856431FB0", "ClusterUpdate"),
],
),
"MS-DCOM": RpcInterfaceDefinition(
"MS-DCOM",
RpcInterfaceMetadata(
"Distributed Component Object Model (DCOM) Remote Protocol",
(
"The Distributed Component Object Model (DCOM) Remote Protocol exposes "
"application objects via remote procedure calls (RPCs) and consists of a "
"set of extensions layered on the Microsoft Remote Procedure Call Extensions."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dcom/86b9cf84-df2e-4f0b-ac22-1b957627e1ca"
),
[
],
[
RpcUuid("00000131-0000-0000-C000-000000000046", "IRemUnknown"),
RpcUuid("4D9F4AB8-7D1C-11CF-861E-0020AF6E7C57", "IActivation"),
RpcUuid("00000143-0000-0000-C000-000000000046", "IRemUnknown2"),
RpcUuid("000001A0-0000-0000-C000-000000000046", "IRemoteSCMActivator"),
RpcUuid("99FCFEC4-5260-101B-BBCB-00AA0021347A", "IObjectExporter"),
RpcUuid("00000000-0000-0000-C000-000000000046", "IUnknown"),
# RpcUuid("00000134-0000-0000-C000-000000000046", "IRundown"), ?
]
),
"MS-DFSNM": RpcInterfaceDefinition(
"MS-DFSNM",
RpcInterfaceMetadata(
"Distributed File System (DFS): Namespace Management Protocol",
(
"Specifies the Distributed File System (DFS): Namespace Management Protocol, "
"which provides an RPC interface for administering DFS configurations. "
"The client is an application that issues method calls on the RPC "
"interface to administer DFS. The server is a DFS service that implements "
"support for this RPC interface for administering DFS."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dfsnm/95a506a8-cae6-4c42-b19d-9c1ed1223979",
security_notes=[
""
]
),
[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE),
RpcInterfaceProfile(ServiceRole.DFS_NAMESPACES, RpcProfileType.REMOTE_MANAGEMENT),
],
[
RpcUuid("4FC742E0-4A10-11CF-8273-00AA004AE673", "MS-DFSNM"),
],
[
RpcNamedPipe("\\\\pipe\\netdfs")
]
),
"MS-DFSRH": RpcInterfaceDefinition(
"MS-DFSRH",
RpcInterfaceMetadata(
"DFS Replication Helper Protocol",
(
"The DFS Replication Helper Protocol is made up of a set of "
"distributed component object model (DCOM) interfaces for configuring "
"and monitoring DFS Replication Helper Protocols on a server."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dfsrh/c3170e6b-e195-4aef-a286-8e6f4923a8ae"
),
[
RpcInterfaceProfile(ServiceRole.DFS_REPLICATION, RpcProfileType.CORE)
],
[
# TODO: structs?
# RpcUuid("9009D654-250B-4E0D-9AB0-ACB63134F69F"),
# RpcUuid("D3766938-9FB7-4392-AF2F-2CE8749DBBD0"),
# RpcUuid("CEB5D7B4-3964-4F71-AC17-4BF57A379D87"),
# RpcUuid("7A2323C7-9EBE-494A-A33C-3CC329A18E1D"),
RpcUuid("E65E8028-83E8-491B-9AF7-AAF6BD51A0CE", "IServerHealthReport"),
RpcUuid("20D15747-6C48-4254-A358-65039FD8C63C", "IServerHealthReport2"),
RpcUuid("4BB8AB1D-9EF9-4100-8EB6-DD4B4E418B72", "IADProxy"),
RpcUuid("C4B0C7D9-ABE0-4733-A1E1-9FDEDF260C7A", "IADProxy2"),
]
),
"MS-DHCPM": RpcInterfaceDefinition(
"MS-DHCPM",
RpcInterfaceMetadata(
"Dynamic Host Configuration Protocol (DHCP) Server Management Protocol",
(
"The Microsoft Dynamic Host Configuration Protocol (DHCP) Server Management Protocol, "
"defines the RPC interfaces that provide methods for remotely accessing and administering "
"the DHCP server. This protocol is a client and server protocol based on RPC that is used "
"in the configuration, management, and monitoring of a DHCP server."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dhcpm/d117857c-1491-46a2-a68e-c844be3627d4"
),
[
RpcInterfaceProfile(ServiceRole.DHCP, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("6BFFD098-A112-3610-9833-46C3F874532D", "dhcpsrv"),
RpcUuid("5B821720-F63B-11D0-AAD2-00C04FC324DB", "dhcpsrv2"),
],
[
RpcNamedPipe("\\\\pipe\\dhcpserver")
]
),
"MS-DLTM": RpcInterfaceDefinition(
"MS-DLTM",
RpcInterfaceMetadata(
"Distributed Link Tracking: Central Manager Protocol",
(
"The Distributed Link Tracking: Central Manager Protocol works with the "
"Distributed Link Tracking (DLT) Workstation Protocol to discover the new "
"location of a file that has moved. DLT can determine whether the file has "
"moved on a mass-storage device, within a computer, or between computers in "
"a network. The DLT Central Manager Protocol keeps track of file and volume "
"moves and other relevant information from participating computers in order to "
"provide this information in response to workstation queries."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dltm/a4a88aac-3bc5-4d5a-8136-52a3bfb979ef"
),
[
# TODO
],
[
RpcUuid("4DA1C422-943D-11D1-ACAE-00C04FC2AA3F", "MS-DLTM"),
],
[
# TODO: confirm
]
),
"MS-DLTW": RpcInterfaceDefinition(
"MS-DLTW",
RpcInterfaceMetadata(
"Distributed Link Tracking: Workstation Protocol",
(
"The Distributed Link Tracking: Workstation Protocol works with the Distributed Link "
"Tracking (DLT) Central Manager Protocol to discover the new location of a file that "
"has moved. DLT can determine whether the file has moved on a mass-storage device, "
"within a computer, or between computers in a network."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dltw/fc649f0e-871a-431a-88b5-d5b2f80e9cc9"
),
[
# TODO
],
[
RpcUuid("300F3532-38CC-11D0-A3F0-0020AF6B0ADD", "MS-DLTW"),
],
[
RpcNamedPipe("\\\\pipe\\ntsvcs"),
RpcNamedPipe("\\\\pipe\\trkwks")
]
),
"MS-DMRP": RpcInterfaceDefinition(
"MS-DMRP",
RpcInterfaceMetadata(
"Disk Management Remote Protocol",
(
"The Disk Management Remote Protocol is a set of Distributed Component Object Model (DCOM) "
"interfaces that manages storage objects on a machine."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dmrp/19a16e20-072f-4d74-a245-ce4df2f1ecdd"
),
[
RpcInterfaceProfile(ServiceBuiltIn.DISK_MANAGEMENT, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("D2D79DF5-3400-11D0-B40B-00AA005FF586", "IVolumeClient (dmintf)"),
RpcUuid("3A410F21-553F-11D1-8E5E-00A0C92C9D5D", "IDMRemoteServer (dmintf)"),
RpcUuid("D2D79DF7-3400-11D0-B40B-00AA005FF586", "IDMNotify (dmintf)"),
RpcUuid("4BDAFC52-FE6A-11D2-93F8-00105A11164A", "IVolumeClient2 (dmintf)"),
RpcUuid("DEB01010-3A37-4D26-99DF-E2BB6AE3AC61", "IVolumeClient4 (dmintf3)"),
RpcUuid("135698D2-3A37-4D26-99DF-E2BB6AE3AC61", "IVolumeClient3 (dmintf3)"),
]
),
"MS-DNSP": RpcInterfaceDefinition(
"MS-DNSP",
RpcInterfaceMetadata(
"Domain Name Service (DNS) Server Management",
(
"The Domain Name Service (DNS) Server Management Protocol defines the RPC "
"interfaces that provide methods for remotely accessing and administering a DNS server. "
"It is a client and server protocol based on RPC that is used in the configuration, "
"management, and monitoring of a DNS server."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dnsp/f97756c9-3783-428b-9451-b376f877319a"
),
[
# Maybe DC?
RpcInterfaceProfile(ServiceRole.DNS, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("50ABC2A4-574D-40B3-9D66-EE4FD5FBA076", "dnsserver")
],
[
RpcNamedPipe("\\\\pipe\\dnsserver")
]
),
"MS-DRSR": RpcInterfaceDefinition(
"MS-DRSR",
RpcInterfaceMetadata(
"Directory Replication Service (DRS) Remote Protocol",
(
"The Directory Replication Service (DRS) Remote Protocol is an RPC protocol "
"for replication and management of data in Active Directory."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-drsr/f977faaa-673e-4f66-b9bf-48c640241d47"
),
[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
[
RpcUuid("7C44D7D4-31D5-424C-BD5E-2B3E1F323D22", "dsaop"),
RpcUuid("E3514235-4B06-11D1-AB04-00C04FC2DCD2", "drsuapi"),
]
),
"MS-DSSP": RpcInterfaceDefinition(
"MS-DSSP",
RpcInterfaceMetadata(
"Directory Services Setup Remote Protocol",
(
"The Directory Services Setup Remote Protocol exposes an RPC interface "
"that a client can call to obtain domain-related computer state and configuration information."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-dssp/6f843846-2494-4d49-b715-2f181317dd34"
),
[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
[
RpcUuid("3919286A-B10C-11D0-9BA8-00C04FD92EF5", "lsarpc")
# maybe 51b836e8-484d-4d03-b0fc-22e265cb3f7b too
],
[
RpcNamedPipe("\\\\pipe\\lsarpc")
]
),
"MS-EERR": RpcInterfaceDefinition(
"MS-EERR",
RpcInterfaceMetadata(
"ExtendedError Remote Data Structure",
(
"The ExtendedError Remote Data Structure encodes extended error information. "
"This data structure assumes that the reader has familiarity with the concepts "
"and the requirements that are detailed in [MS-RPCE] and [C706]."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-eerr/572bb78f-9116-4966-8f9d-4593456da307"
),
[
# TODO
],
[
RpcUuid("14A8831C-BC82-11D2-8A64-0008C7457E5D")
]
),
"MS-EFSR": RpcInterfaceDefinition(
"MS-EFSR",
RpcInterfaceMetadata(
"Encrypting File System Remote (EFSRPC) Protocol",
(
"The Encrypting File System Remote (EFSRPC) Protocol performs maintenance "
"and management operations on encrypted data that is stored remotely and accessed over a network."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-efsr/08796ba8-01c8-4872-9221-1000ec2eff31"
),
[
# TODO
],
[
RpcUuid("df1941c5-fe89-4e79-bf10-463657acf44d", "efsrpc"),
RpcUuid("C681D488-D850-11D0-8C52-00C04FD90F7E", "lsarpc"),
],
[
RpcNamedPipe("\\\\pipe\\efsrpc"),
RpcNamedPipe("\\\\pipe\\lsarpc")
]
),
"MS-EVEN": RpcInterfaceDefinition(
"MS-EVEN",
RpcInterfaceMetadata(
"EventLog Remoting Protocol",
(
"The EventLog Remoting Protocol exposes the RPC methods for "
"reading events in both live and backup event logs on remote computers."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-even/55b13664-f739-4e4e-bd8d-04eeda59d09f"
),
[
RpcInterfaceProfile(ServiceBuiltIn.EVENT_LOG, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("82273FDC-E32A-18C3-3F78-827929DC23EA", "eventlog"),
],
[
RpcNamedPipe("\\\\pipe\\eventlog")
]
),
"MS-EVEN6": RpcInterfaceDefinition(
"MS-EVEN6",
RpcInterfaceMetadata(
"EventLog Remoting Protocol Version 6.0",
(
"The EventLog Remoting Protocol Version 6.0 protocol exposes RPC methods "
"for reading events in both live and backup event logs on remote computers. "
"This protocol was originally made available for Windows Vista."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-even6/18000371-ae6d-45f7-95f3-249cbe2be39b"
),
[
RpcInterfaceProfile(ServiceBuiltIn.EVENT_LOG, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("F6BEAFF7-1E19-4FBB-9F8F-B89E2018337C", "MS-EVEN6"),
]
),
"MS-FASP": RpcInterfaceDefinition(
"MS-FASP",
RpcInterfaceMetadata(
"Firewall and Advanced Security Protocol",
(
"The Firewall and Advanced Security Protocol manages firewall "
"and advanced security components on remote computers."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fasp/55e50895-2e1f-4479-b130-122f9dc0265f"
),
[
RpcInterfaceProfile(ServiceBuiltIn.FIREWALL, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("6B5BDD1E-528C-422C-AF8C-A4079BE4FE48", "MS-FASP"),
]
),
"MS-FAX": RpcInterfaceDefinition(
"MS-FAX",
RpcInterfaceMetadata(
"Fax Server and Client Remote Protocol",
(
"The Fax Server and Client Remote Protocol is an RPC-based, client-server "
"protocol, and is used to send faxes and to manage the fax server and its queues."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fax/dabce486-05b1-4ea4-95fe-f2c3d5315ff4"
),
[
# TODO: maybe split into management / core?
RpcInterfaceProfile(ServiceRole.FAX, RpcProfileType.HYBRID)
],
[
RpcUuid("6099FC12-3EFF-11D0-ABD0-00C04FD91A4E", "faxclient"),
RpcUuid("EA0A3165-4834-11D2-A6F8-00C04FA346CC", "sharedfax"),
],
[
RpcNamedPipe("\\\\pipe\\sharefax")
]
),
"MS-FRS1": RpcInterfaceDefinition(
"MS-FRS1",
RpcInterfaceMetadata(
"File Replication Service Protocol",
(
"The File Replication Service Protocol is a replication protocol that is "
"used to replicate files and folders across one or more members in an "
"Active Directory domain. It works to keep copies of a file system tree "
"up to date on all members of a replication group, while allowing any "
"member of the group to change the contents at any time."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-frs1/0fa4f914-9442-4b49-93cc-038674a333f1"
),
[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
[
RpcUuid("D049B186-814F-11D1-9A3C-00C04FC9B232", "NtFrsApi"),
RpcUuid("F5CC59B4-4264-101A-8C59-08002B2F8426", "frsrpc"),
# a00c021c-2be2-11d2-b678-0000f87a8f8e = File Replication (PerfFrs)
]
),
"MS-FRS2": RpcInterfaceDefinition(
"MS-FRS2",
RpcInterfaceMetadata(
"Distributed File System Replication Protocol",
(
"The SD Microsoft Distributed File System Replication Protocol is an RPC "
"interface that replicates files between servers and enables the creation "
"of multimaster optimistic file replication systems."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-frs2/9914bdd4-9579-43a7-9f2d-9efe2e162944"
),
[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE), # TODO: confirm
RpcInterfaceProfile(ServiceRole.DFS_REPLICATION, RpcProfileType.CORE)
],
[
RpcUuid("897E2E5F-93F3-4376-9C9C-FD2277495C27", "MS-FRS2")
]
),
"MS-FSRM": RpcInterfaceDefinition(
"MS-FSRM",
RpcInterfaceMetadata(
"File Server Resource Manager Protocol",
(
"The File Server Resource Manager Protocol implements a set of a "
"Distributed Component Object Model (DCOM) interfaces for managing "
"the configuration of directory quotas, file screens, and storage "
"report jobs on a machine."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fsrm/907f898e-2eb6-44d7-aaca-48fa46ff6941"
),
[
RpcInterfaceProfile(ServiceRole.FSRM, RpcProfileType.REMOTE_MANAGEMENT)
],
[
RpcUuid("0770687E-9F36-4D6F-8778-599D188461C9", "IFsrmFileManagementJob"),
RpcUuid("12937789-E247-4917-9C20-F3EE9C7EE783", "IFsrmActionCommand"),
RpcUuid("1568A795-3924-4118-B74B-68D8F0FA5DAF", "IFsrmQuotaBase"),
RpcUuid("15A81350-497D-4ABA-80E9-D4DBCC5521FE", "IFsrmStorageModuleDefinition"),
RpcUuid("1BB617B8-3886-49DC-AF82-A6C90FA35DDA", "IFsrmMutableCollection"),
RpcUuid("205BEBF8-DD93-452A-95A6-32B566B35828", "IFsrmFileScreenTemplate"),
RpcUuid("22BCEF93-4A3F-4183-89F9-2F8B8A628AEE", "IFsrmObject"),
RpcUuid("27B899FE-6FFA-4481-A184-D3DAADE8A02B", "IFsrmReportManager"),
RpcUuid("2DBE63C4-B340-48A0-A5B0-158E07FC567E", "IFsrmActionReport"),
RpcUuid("326AF66F-2AC0-4F68-BF8C-4759F054FA29", "IFsrmPropertyCondition"),
RpcUuid("377F739D-9647-4B8E-97D2-5FFCE6D759CD", "IFsrmQuota"),
RpcUuid("38E87280-715C-4C7D-A280-EA1651A19FEF", "IFsrmReportJob"),
RpcUuid("39322A2D-38EE-4D0D-8095-421A80849A82", "IFsrmDerivedObjectsResult"),
RpcUuid("4173AC41-172D-4D52-963C-FDC7E415F717", "IFsrmQuotaTemplateManager"),
RpcUuid("426677D5-018C-485C-8A51-20B86D00BDC4", "IFsrmFileGroupManager"),
RpcUuid("42DC3511-61D5-48AE-B6DC-59FC00C0A8D6", "IFsrmQuotaObject"),
RpcUuid("47782152-D16C-4229-B4E1-0DDFE308B9F6", "IFsrmPropertyDefinition2"),
RpcUuid("4846CB01-D430-494F-ABB4-B1054999FB09", "IFsrmQuotaManagerEx"),
RpcUuid("4A73FEE4-4102-4FCC-9FFB-38614F9EE768", "IFsrmProperty"),
RpcUuid("4C8F96C3-5D94-4F37-A4F4-F56AB463546F", "IFsrmActionEventLog"),
RpcUuid("515C1277-2C81-440E-8FCF-367921ED4F59", "IFsrmPipelineModuleDefinition"),
RpcUuid("5F6325D3-CE88-4733-84C1-2D6AEFC5EA07", "IFsrmFileScreen"),
RpcUuid("6879CAF9-6617-4484-8719-71C3D8645F94", "IFsrmReportScheduler"),
RpcUuid("6CD6408A-AE60-463B-9EF1-E117534D69DC", "IFsrmAction"),
RpcUuid("6F4DBFFF-6920-4821-A6C3-B7E94C1FD60C", "IFsrmPathMapper"),
RpcUuid("8276702F-2532-4839-89BF-4872609A2EA4", "IFsrmActionEmail2"),
RpcUuid("8BB68C7D-19D8-4FFB-809E-BE4FC1734014", "IFsrmQuotaManager"),
RpcUuid("8DD04909-0E34-4D55-AFAA-89E1F1A1BBB9", "IFsrmFileGroup"),
RpcUuid("96DEB3B5-8B91-4A2A-9D93-80A35D8AA847", "IFsrmCommittableCollection"),
RpcUuid("9A2BF113-A329-44CC-809A-5C00FCE8DA40", "IFsrmQuotaTemplateImported"),
RpcUuid("A2EFAB31-295E-46BB-B976-E86D58B52E8B", "IFsrmQuotaTemplate"),
RpcUuid("AD55F10B-5F11-4BE7-94EF-D9EE2E470DED", "IFsrmFileGroupImported"),
RpcUuid("AFC052C2-5315-45AB-841B-C6DB0E120148", "IFsrmClassificationRule"),
RpcUuid("BB36EA26-6318-4B8C-8592-F72DD602E7A5", "IFsrmClassifierModuleDefinition"),
RpcUuid("BEE7CE02-DF77-4515-9389-78F01C5AFC1A", "IFsrmFileScreenException"),
RpcUuid("CB0DF960-16F5-4495-9079-3F9360D831DF", "IFsrmRule"),
RpcUuid("CFE36CBA-1949-4E74-A14F-F1D580CEAF13", "IFsrmFileScreenTemplateManager"),
RpcUuid("D2DC89DA-EE91-48A0-85D8-CC72A56F7D04", "IFsrmClassificationManager"),
RpcUuid("D646567D-26AE-4CAA-9F84-4E0AAD207FCA", "IFsrmActionEmail"),
RpcUuid("D8CC81D9-46B8-4FA4-BFA5-4AA9DEC9B638", "IFsrmReport"),
RpcUuid("E1010359-3E5D-4ECD-9FE4-EF48622FDF30", "IFsrmFileScreenTemplateImported"),
RpcUuid("E946D148-BD67-4178-8E22-1C44925ED710", "IFsrmPropertyDefinitionValue"),
RpcUuid("EDE0150F-E9A3-419C-877C-01FE5D24C5D3", "IFsrmPropertyDefinition"),
RpcUuid("EE321ECB-D95E-48E9-907C-C7685A013235", "IFsrmFileManagementJobManager"),
RpcUuid("F3637E80-5B22-4A2B-A637-BBB642B41CFC", "IFsrmFileScreenBase"),
RpcUuid("F411D4FD-14BE-4260-8C40-03B7C95E608A", "IFsrmSetting"),
RpcUuid("F76FBF3B-8DDD-4B42-B05A-CB1C3FF1FEE8", "IFsrmCollection"),
RpcUuid("F82E5729-6ABA-4740-BFC7-C7F58F75FB7B", "IFsrmAutoApplyQuota"),
RpcUuid("FF4FA04E-5A94-4BDA-A3A0-D5B4D3C52EBA", "IFsrmFileScreenManager"),
]
),
"MS-FSRVP": RpcInterfaceDefinition(
"MS-FSRVP",
RpcInterfaceMetadata(
"File Server Remote VSS Protocol",
(
"The File Server Remote VSS Protocol is an RPC-based protocol used for "
"creating shadow copies of file shares on a remote computer, and for "
"facilitating backup applications in performing application-consistent "
"backup and restore of data on SMB2 shares."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fsrvp/dae107ec-8198-4778-a950-faa7edad125b"
),
[
# Is this remote management?
RpcInterfaceProfile(ServiceRole.FILE_SERVER_VSS_AGENT, RpcProfileType.CORE)
],
[
RpcUuid("A8E0653C-2744-4389-A61D-7373DF8B2292", "FileServerVssAgent"),
],
[
RpcNamedPipe("\\\\pipe\\FssagentRpc")
]
),
"MS-GKDI": RpcInterfaceDefinition(
"MS-GKDI",
RpcInterfaceMetadata(
"Group Key Distribution Protocol",
(
"The Group Key Distribution Protocol enables clients to obtain "
"cryptographic keys associated with Active Directory security principals."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-fsrvp/dae107ec-8198-4778-a950-faa7edad125b"
),
[
RpcInterfaceProfile(ServiceRole.DOMAIN_CONTROLLER, RpcProfileType.CORE)
],
[
RpcUuid("B9785960-524F-11DF-8B6D-83DCDED72085", "MS-GKDI"),
]
),
"MS-ICPR": RpcInterfaceDefinition(
"MS-ICPR",
RpcInterfaceMetadata(
"ICertPassage Remote Protocol",
(
"The ICertPassage Remote Protocol is subset of the Windows Client "
"Certificate Enrollment Protocol, as specified in [MS-WCCE]. "
"This protocol only enables the client to enroll certificates, "
"whereas [MS-WCCE] provides enrollment and additional functionality."
),
"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-icpr/9b8ed605-6b00-41d1-9a2a-9897e40678fc"
),
[
RpcInterfaceProfile(ServiceRole.CERTIFICATE_SERVICES, RpcProfileType.CORE)
],
[
RpcUuid("91AE6020-9E3C-11CF-8D7C-00AA00C091BE", "ICertPassage"),
],
[
RpcNamedPipe("\\\\pipe\\cert")
]
),
"MS-IISS": RpcInterfaceDefinition(