-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdcomperm.cpp
828 lines (678 loc) · 27.3 KB
/
dcomperm.cpp
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
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
//
// Copyright (c) Microsoft Corporation. All rights reserved.
#include <windows.h>
#include <stdio.h>
#include <conio.h>
#include <tchar.h>
#include "ntsecapi.h"
#include "dcomperm.h"
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void ShowUsage (
LPTSTR tszErrorString
)
{
BOOL fLegacy = IsLegacySecurityModel();
_tprintf (_T("%s\n"), tszErrorString);
_tprintf (_T("Syntax: dcomperm <option> [...]\n\n"));
_tprintf (_T("Options:\n"));
if(!fLegacy)
{
_tprintf (_T(" -ma <\"set\" or \"remove\"> <Principal Name> [\"permit\" or \"deny\"] [\"level:l,r\"]\n"));
_tprintf (_T(" -ma list\n"));
_tprintf (_T(" Modify or list the machine access permission list\n\n"));
_tprintf (_T(" -ml <\"set\" or \"remove\"> <Principal Name> [\"permit\" or \"deny\"] [\"level:l,r,ll,la,rl,ra\"]\n"));
_tprintf (_T(" -ml list\n"));
_tprintf (_T(" Modify or list the machine launch permission list\n\n"));
}
_tprintf (_T(" -da <\"set\" or \"remove\"> <Principal Name> [\"permit\" or \"deny\"] "));
if(!fLegacy) _tprintf (_T("[\"level:l,r\"]\n")); else _tprintf (_T("\n"));
_tprintf (_T(" -da list\n"));
_tprintf (_T(" Modify or list the default access permission list\n\n"));
_tprintf (_T(" -dl <\"set\" or \"remove\"> <Principal Name> [\"permit\" or \"deny\"] "));
if(!fLegacy) _tprintf (_T("[\"level:l,r,ll,la,rl,ra\"]\n")); else _tprintf (_T("\n"));
_tprintf (_T(" -dl list\n"));
_tprintf (_T(" Modify or list the default launch permission list\n\n"));
_tprintf (_T(" -aa <AppID> <\"set\" or \"remove\"> <Principal Name> [\"permit\" or \"deny\"] "));
if(!fLegacy) _tprintf (_T("[\"level:l,r\"]\n")); else _tprintf (_T("\n"));
_tprintf (_T(" -aa <AppID> default\n"));
_tprintf (_T(" -aa <AppID> list\n"));
_tprintf (_T(" Modify or list the access permission list for a specific AppID\n\n"));
_tprintf (_T(" -al <AppID> <\"set\" or \"remove\"> <Principal Name> [\"permit\" or \"deny\"] "));
if(!fLegacy) _tprintf (_T("[\"level:l,r,ll,la,rl,ra\"]\n")); else _tprintf (_T("\n"));
_tprintf (_T(" -al <AppID> default\n"));
_tprintf (_T(" -al <AppID> list\n"));
_tprintf (_T(" Modify or list the launch permission list for a specific AppID\n\n"));
if(!fLegacy)
{
_tprintf (_T("level: \n"));
_tprintf (_T("\tll - local launch (only applies to {ml, dl, al} options) \n"));
_tprintf (_T("\trl - remote launch (only applies to {ml, dl, al} options) \n"));
_tprintf (_T("\tla - local activate (only applies to {ml, dl, al} options) \n"));
_tprintf (_T("\tra - remote activate (only applies to {ml, dl, al} options) \n"));
_tprintf (_T("\tl - local (local access - means launch and activate when used with {ml, dl, al} options) \n"));
_tprintf (_T("\tr - remote (remote access - means launch and activate when used with {ml, dl, al} options) \n\n"));
}
_tprintf (_T("Press any key to continue. . ."));
_getch();
_tprintf (_T("\r \r"));
_tprintf (_T(" -runas <AppID> <Principal Name> <Password>\n"));
_tprintf (_T(" -runas <AppID> \"Interactive User\"\n"));
_tprintf (_T(" -runas <AppID> \"Launching User\"\n"));
_tprintf (_T(" Set the RunAs information for a specific AppID\n\n"));
_tprintf (_T("Examples:\n"));
_tprintf (_T(" dcomperm -da set redmond\\t-miken permit"));
if(!fLegacy) _tprintf (_T(" level:r\n")); else _tprintf (_T("\n"));
_tprintf (_T(" dcomperm -dl set redmond\\jdoe deny"));
if(!fLegacy) _tprintf (_T(" level:rl,ra\n")); else _tprintf (_T("\n"));
_tprintf (_T(" dcomperm -aa {12345678-1234-1234-1234-00aa00bbf7c7} list\n"));
_tprintf (_T(" dcomperm -al {12345678-1234-1234-1234-00aa00bbf7c7} remove redmond\\t-miken\n"));
_tprintf (_T(" dcomperm -runas {12345678-1234-1234-1234-00aa00bbf7c7} redmond\\jdoe password\n"));
exit (0);
}
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void Error (
LPTSTR tszErrorMessage,
DWORD dwErrorCode
)
{
TCHAR tszMessageBuffer [SIZE_MSG_BUFFER] = {0};
_tprintf (_T("%s\n%s"), tszErrorMessage, SystemMessage (tszMessageBuffer, RTL_NUMBER_OF(tszMessageBuffer), dwErrorCode));
exit (0);
}
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void SetAccessMaskFromCommandLine (
LPTSTR ptszArg,
DWORD *pdwAccessMask,
DWORD dwSDType
)
{
LPTSTR ptszToken = NULL;
LPTSTR ptszContext = NULL;
*pdwAccessMask = 0;
ptszToken = _tcstok_s(ptszArg, _T(":"), &ptszContext);
if(!ptszToken || _tcsicmp (ptszToken, _T("LEVEL")) != 0)
{
ShowUsage(_T("Invalid LEVEL argument"));
}
ptszToken = _tcstok_s(NULL, _T(","), &ptszContext);
if(!ptszToken)
{
ShowUsage(_T("Invalid LEVEL argument"));
}
if(dwSDType & SDTYPE_ACCESS) do
{
if(_tcsicmp (ptszToken, _T("L")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_EXECUTE_LOCAL | COM_RIGHTS_EXECUTE;
}
else if(_tcsicmp (ptszToken, _T("R")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_EXECUTE_REMOTE | COM_RIGHTS_EXECUTE;
}
else
{
ShowUsage(_T("Invalid LEVEL argument"));
}
}while(ptszToken = _tcstok_s(NULL, _T(","), &ptszContext));
else do
{
if(_tcsicmp (ptszToken, _T("LL")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_EXECUTE_LOCAL | COM_RIGHTS_EXECUTE;
}
else if(_tcsicmp (ptszToken, _T("LA")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_ACTIVATE_LOCAL | COM_RIGHTS_EXECUTE;
}
else if(_tcsicmp (ptszToken, _T("RL")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_EXECUTE_REMOTE | COM_RIGHTS_EXECUTE;
}
else if(_tcsicmp (ptszToken, _T("RA")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_ACTIVATE_REMOTE | COM_RIGHTS_EXECUTE;
}
else if(_tcsicmp (ptszToken, _T("L")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_ACTIVATE_LOCAL | COM_RIGHTS_EXECUTE_LOCAL | COM_RIGHTS_EXECUTE;
}
else if(_tcsicmp (ptszToken, _T("R")) == 0)
{
*pdwAccessMask |= COM_RIGHTS_ACTIVATE_REMOTE | COM_RIGHTS_EXECUTE_REMOTE | COM_RIGHTS_EXECUTE;
}
else
{
ShowUsage(_T("Invalid LEVEL argument"));
}
}while(ptszToken = _tcstok_s(NULL, _T(","), &ptszContext));
}
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void HandleMachineAccessOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
DWORD dwAccessMask = COM_RIGHTS_EXECUTE;
if (cArgs < 3) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("LIST")) == 0)
{
_tprintf (_T("Machine access permission list:\n\n"));
dwReturnValue = ListMachineAccessACL();
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot list default access permission list."), dwReturnValue);
}
return;
}
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("SET")) == 0)
{
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
if(cArgs == 6)
{
SetAccessMaskFromCommandLine(pptszArgv[5], &dwAccessMask, SDTYPE_MACHINE_ACCESS);
}
else if(!IsLegacySecurityModel())
{
_tprintf (_T("WARNING: Default access flags designated on a system with an enhanced security model.\n"));
}
if (_tcsicmp (pptszArgv [4], _T("PERMIT")) == 0)
{
dwReturnValue = ChangeMachineAccessACL (pptszArgv [3], TRUE, TRUE, dwAccessMask);
}
else if (_tcsicmp (pptszArgv [4], _T("DENY")) == 0)
{
dwReturnValue = ChangeMachineAccessACL (pptszArgv [3], TRUE, FALSE, dwAccessMask);
}
else
{
ShowUsage (_T("You can only set a user's permissions to \"permit\" or \"deny\".\n\n"));
}
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot add user to machine access ACL."), dwReturnValue);
}
}
else if (_tcsicmp (pptszArgv [2], _T("REMOVE")) == 0)
{
dwReturnValue = ChangeMachineAccessACL (pptszArgv[3], FALSE, FALSE, dwAccessMask);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove user from machine access ACL."), dwReturnValue);
}
}
else
{
ShowUsage (_T("You can only \"set\" or \"remove\" a user."));
}
_tprintf (_T("Successfully set the Machine Access ACL.\n"));
ListMachineAccessACL();
}
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void HandleMachineLaunchAndActivateOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
DWORD dwAccessMask = COM_RIGHTS_EXECUTE;
if (cArgs < 3) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("LIST")) == 0)
{
_tprintf (_T("Machine launch permission list:\n\n"));
dwReturnValue = ListMachineLaunchACL();
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot list default launch ACL."), dwReturnValue);
}
return;
}
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("SET")) == 0)
{
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
if(cArgs == 6)
{
SetAccessMaskFromCommandLine(pptszArgv[5], &dwAccessMask, SDTYPE_MACHINE_LAUNCH);
}
else if(!IsLegacySecurityModel())
{
_tprintf (_T("WARNING: Default access flags designated on a system with an enhanced security model.\n"));
}
if (_tcsicmp (pptszArgv [4], _T("PERMIT")) == 0)
{
dwReturnValue = ChangeMachineLaunchAndActivateACL (pptszArgv [3], TRUE, TRUE, dwAccessMask);
}
else if (_tcsicmp (pptszArgv [4], _T("DENY")) == 0)
{
dwReturnValue = ChangeMachineLaunchAndActivateACL (pptszArgv [3], TRUE, FALSE, dwAccessMask);
}
else
{
ShowUsage (_T("You can only set a user's permissions to \"permit\" or \"deny\".\n\n"));
}
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot add user to machine launch ACL."), dwReturnValue);
}
}
else if (_tcsicmp (pptszArgv [2], _T("REMOVE")) == 0)
{
dwReturnValue = ChangeMachineLaunchAndActivateACL (pptszArgv[3], FALSE, FALSE, dwAccessMask);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove user from machine launch ACL."), dwReturnValue);
}
}
else
{
ShowUsage (_T("You can only \"set\" or \"remove\" a user."));
}
_tprintf (_T("Successfully set the Machine Launch ACL.\n"));
ListMachineLaunchACL();
}
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void HandleDefaultAccessOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
DWORD dwAccessMask = COM_RIGHTS_EXECUTE;
if (cArgs < 3) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("LIST")) == 0)
{
_tprintf (_T("Default access permission list:\n\n"));
dwReturnValue = ListDefaultAccessACL();
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot list default access permission list."), dwReturnValue);
}
return;
}
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("SET")) == 0)
{
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
if(cArgs == 6)
{
SetAccessMaskFromCommandLine(pptszArgv[5], &dwAccessMask, SDTYPE_DEFAULT_ACCESS);
}
else if(!IsLegacySecurityModel())
{
_tprintf (_T("WARNING: Default access flags designated on a system with an enhanced security model.\n"));
}
if (_tcsicmp (pptszArgv [4], _T("PERMIT")) == 0)
{
dwReturnValue = ChangeDefaultAccessACL (pptszArgv [3], TRUE, TRUE, dwAccessMask);
}
else if (_tcsicmp (pptszArgv [4], _T("DENY")) == 0)
{
dwReturnValue = ChangeDefaultAccessACL (pptszArgv [3], TRUE, FALSE, dwAccessMask);
}
else
{
ShowUsage (_T("You can only set a user's permissions to \"permit\" or \"deny\".\n\n"));
}
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot add user to default access ACL."), dwReturnValue);
}
}
else if (_tcsicmp (pptszArgv [2], _T("REMOVE")) == 0)
{
dwReturnValue = ChangeDefaultAccessACL (pptszArgv[3], FALSE, FALSE, dwAccessMask);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove user from default access ACL."), dwReturnValue);
}
}
else
{
ShowUsage (_T("You can only \"set\" or \"remove\" a user."));
}
_tprintf (_T("Successfully set the Default Access ACL.\n"));
ListDefaultAccessACL();
}
/*---------------------------------------------------------------------------*\
* NAME: HandleDefaultLaunchOption *
* --------------------------------------------------------------------------*
* DESCRIPTION:
\*---------------------------------------------------------------------------*/
void HandleDefaultLaunchOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
DWORD dwAccessMask = COM_RIGHTS_EXECUTE;
if (cArgs < 3) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("LIST")) == 0)
{
_tprintf (_T("Default launch permission list:\n\n"));
dwReturnValue = ListDefaultLaunchACL();
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot list default launch ACL."), dwReturnValue);
}
return;
}
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [2], _T("SET")) == 0)
{
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
if(cArgs == 6)
{
SetAccessMaskFromCommandLine(pptszArgv[5], &dwAccessMask, SDTYPE_DEFAULT_LAUNCH);
}
else if(!IsLegacySecurityModel())
{
_tprintf (_T("WARNING: Default access flags designated on a system with an enhanced security model.\n"));
}
if (_tcsicmp (pptszArgv [4], _T("PERMIT")) == 0)
{
dwReturnValue = ChangeDefaultLaunchAndActivateACL (pptszArgv [3], TRUE, TRUE, dwAccessMask);
}
else if (_tcsicmp (pptszArgv [4], _T("DENY")) == 0)
{
dwReturnValue = ChangeDefaultLaunchAndActivateACL (pptszArgv [3], TRUE, FALSE, dwAccessMask);
}
else
{
ShowUsage (_T("You can only set a user's permissions to \"permit\" or \"deny\".\n\n"));
}
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot add user to default launch ACL."), dwReturnValue);
}
}
else if (_tcsicmp (pptszArgv [2], _T("REMOVE")) == 0)
{
dwReturnValue = ChangeDefaultLaunchAndActivateACL (pptszArgv[3], FALSE, FALSE, dwAccessMask);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove user from default launch ACL."), dwReturnValue);
}
}
else
{
ShowUsage (_T("You can only \"set\" or \"remove\" a user."));
}
_tprintf (_T("Successfully set the Default Launch ACL.\n"));
ListDefaultLaunchACL();
}
void HandleApplicationAccessOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
HKEY hkeyRegistry = NULL;
TCHAR tszAppID [SIZE_NAME_BUFFER] = {0};
TCHAR tszKeyName [SIZE_NAME_BUFFER] = {0};
DWORD dwAccessMask = COM_RIGHTS_EXECUTE;
if (cArgs < 4)
ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv[3], _T("LIST")) == 0)
{
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
_tprintf (_T("Access permission list for AppID %s:\n\n"), pptszArgv[2]);
ListAppIDAccessACL (pptszArgv[2]);
return;
}
if (_tcsicmp (pptszArgv[3], _T("DEFAULT")) == 0)
{
_stprintf_s (tszAppID, RTL_NUMBER_OF(tszAppID), pptszArgv [2][0] == '{' ? _T("%s") : _T("{%s}"), pptszArgv [2]);
_stprintf_s (tszKeyName, RTL_NUMBER_OF(tszKeyName), _T("APPID\\%s"), tszAppID);
dwReturnValue = RegOpenKeyEx (HKEY_CLASSES_ROOT, tszKeyName, 0, KEY_ALL_ACCESS, &hkeyRegistry);
if (dwReturnValue != ERROR_SUCCESS && dwReturnValue != ERROR_FILE_NOT_FOUND)
{
Error (_T("ERROR: Cannot open AppID registry key."), dwReturnValue);
}
dwReturnValue = RegDeleteValue (hkeyRegistry, _T("AccessPermission"));
if (dwReturnValue != ERROR_SUCCESS && dwReturnValue != ERROR_FILE_NOT_FOUND)
{
Error (_T("ERROR: Cannot delete AccessPermission value."), dwReturnValue);
}
if(hkeyRegistry) RegCloseKey (hkeyRegistry);
_tprintf (_T("Successfully set the Application Access to the machine default.\n"));
return;
}
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [3], _T("SET")) == 0)
{
if (cArgs < 6) ShowUsage (_T("Invalid number of arguments."));
if(cArgs == 7)
{
SetAccessMaskFromCommandLine(pptszArgv[6], &dwAccessMask, SDTYPE_APPLICATION_ACCESS);
}
else if(!IsLegacySecurityModel())
{
_tprintf (_T("WARNING: Default access flags designated on a system with an enhanced security model.\n"));
}
if (_tcsicmp (pptszArgv [5], _T("PERMIT")) == 0)
{
dwReturnValue = ChangeAppIDAccessACL (pptszArgv[2], pptszArgv [4], TRUE, TRUE, dwAccessMask);
}
else if (_tcsicmp (pptszArgv [5], _T("DENY")) == 0)
{
dwReturnValue = ChangeAppIDAccessACL (pptszArgv[2], pptszArgv [4], TRUE, FALSE, dwAccessMask);
}
else
{
ShowUsage (_T("You can only set a user's permissions to \"permit\" or \"deny\".\n\n"));
}
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot add user to application access ACL."), dwReturnValue);
}
}
else if (_tcsicmp (pptszArgv [3], _T("REMOVE")) == 0)
{
dwReturnValue = ChangeAppIDAccessACL (pptszArgv[2], pptszArgv[4], FALSE, FALSE, dwAccessMask);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove user from application access ACL."), dwReturnValue);
}
}
else
{
ShowUsage (_T("You can only \"set\" or \"remove\" a user."));
}
_tprintf (_T("Successfully set the Application Access ACL.\n"));
ListAppIDAccessACL(pptszArgv[2]);
}
void HandleApplicationLaunchAndActivateOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
HKEY hkeyRegistry = NULL;
TCHAR tszAppID [SIZE_NAME_BUFFER] = {0};
TCHAR tszKeyName [SIZE_NAME_BUFFER] = {0};
DWORD dwAccessMask = COM_RIGHTS_EXECUTE;
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv[3], _T("LIST")) == 0)
{
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments.\n"));
_tprintf (_T("Launch permission list for AppID %s:\n\n"), pptszArgv[2]);
ListAppIDLaunchACL (pptszArgv[2]);
return;
}
if (_tcsicmp (pptszArgv[3], _T("DEFAULT")) == 0)
{
_stprintf_s (tszAppID, RTL_NUMBER_OF(tszAppID), pptszArgv [2][0] == '{' ? _T("%s") : _T("{%s}"), pptszArgv [2]);
_stprintf_s (tszKeyName, RTL_NUMBER_OF(tszKeyName), _T("APPID\\%s"), tszAppID);
dwReturnValue = RegOpenKeyEx (HKEY_CLASSES_ROOT, tszKeyName, 0, KEY_ALL_ACCESS, &hkeyRegistry);
if (dwReturnValue != ERROR_SUCCESS && dwReturnValue != ERROR_FILE_NOT_FOUND)
{
Error (_T("ERROR: Cannot open AppID registry key."), dwReturnValue);
}
dwReturnValue = RegDeleteValue (hkeyRegistry, _T("LaunchPermission"));
if (dwReturnValue != ERROR_SUCCESS && dwReturnValue != ERROR_FILE_NOT_FOUND)
{
Error (_T("ERROR: Cannot delete LaunchPermission value."), dwReturnValue);
}
if(hkeyRegistry) RegCloseKey (hkeyRegistry);
_tprintf (_T("Successfully set the Application Launch to the machine default.\n"));
return;
}
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
if (_tcsicmp (pptszArgv [3], _T("SET")) == 0)
{
if (cArgs < 6) ShowUsage (_T("Invalid number of arguments."));
if(cArgs == 7)
{
SetAccessMaskFromCommandLine(pptszArgv[6], &dwAccessMask, SDTYPE_APPLICATION_LAUNCH);
}
else if(!IsLegacySecurityModel())
{
_tprintf (_T("WARNING: Default access flags designated on a system with an enhanced security model.\n"));
}
if (_tcsicmp (pptszArgv [5], _T("PERMIT")) == 0)
{
dwReturnValue = ChangeAppIDLaunchAndActivateACL (pptszArgv[2], pptszArgv [4], TRUE, TRUE, dwAccessMask);
}
else if (_tcsicmp (pptszArgv [5], _T("DENY")) == 0)
{
dwReturnValue = ChangeAppIDLaunchAndActivateACL (pptszArgv[2], pptszArgv [4], TRUE, FALSE, dwAccessMask);
}
else
{
ShowUsage (_T("You can only set a user's permissions to \"permit\" or \"deny\".\n\n"));
}
if (dwReturnValue != ERROR_SUCCESS)
Error (_T("ERROR: Cannot add user to application launch ACL."), dwReturnValue);
}
else if (_tcsicmp (pptszArgv [3], _T("REMOVE")) == 0)
{
dwReturnValue = ChangeAppIDLaunchAndActivateACL (pptszArgv[2], pptszArgv[4], FALSE, FALSE, dwAccessMask);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove user from application launch ACL."), dwReturnValue);
}
}
else
{
ShowUsage (_T("You can only \"set\" or \"remove\" a user."));
}
_tprintf (_T("Successfully set the Application Launch ACL.\n"));
ListAppIDLaunchACL(pptszArgv[2]);
}
void HandleRunAsOption (
int cArgs,
TCHAR **pptszArgv
)
{
DWORD dwReturnValue = ERROR_SUCCESS;
HKEY hkeyRegistry = NULL;
TCHAR tszAppID [SIZE_NAME_BUFFER] = {0};
TCHAR tszKeyName [SIZE_NAME_BUFFER] = {0};
if (cArgs < 4) ShowUsage (_T("Invalid number of arguments."));
_stprintf_s (tszAppID, RTL_NUMBER_OF(tszAppID), pptszArgv [2][0] == '{' ? _T("%s") : _T("{%s}"), pptszArgv [2]);
_stprintf_s (tszKeyName, RTL_NUMBER_OF(tszKeyName), _T("APPID\\%s"), tszAppID);
dwReturnValue = RegOpenKeyEx (HKEY_CLASSES_ROOT, tszKeyName, 0, KEY_ALL_ACCESS, &hkeyRegistry);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot open AppID registry key."), dwReturnValue);
}
if (_tcsicmp (pptszArgv[3], _T("LAUNCHING USER")) == 0)
{
dwReturnValue = RegDeleteValue(hkeyRegistry, _T("RunAs"));
if(dwReturnValue == ERROR_FILE_NOT_FOUND)
{
dwReturnValue = ERROR_SUCCESS;
}
else if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot remove RunAs registry value."), dwReturnValue);
}
}
else
{
if (_tcsicmp (pptszArgv[3], _T("INTERACTIVE USER")) != 0)
{
if (cArgs < 5) ShowUsage (_T("Invalid number of arguments."));
dwReturnValue = SetRunAsPassword (pptszArgv[2], pptszArgv[3], pptszArgv[4]);
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot set RunAs password."), dwReturnValue);
}
}
dwReturnValue = RegSetValueEx (hkeyRegistry, _T("RunAs"), 0, REG_SZ, (LPBYTE) pptszArgv [3], (DWORD)_tcslen (pptszArgv[3]) * sizeof (TCHAR));
if (dwReturnValue != ERROR_SUCCESS)
{
Error (_T("ERROR: Cannot set RunAs registry value."), dwReturnValue);
}
}
if(hkeyRegistry) RegCloseKey (hkeyRegistry);
}
extern "C" void _tmain (
int cArgs,
TCHAR **pptszArgv
)
{
if (cArgs < 2) ShowUsage (_T("No option specified."));
if (_tcsicmp (pptszArgv [1], _T("-DA")) == 0)
{
HandleDefaultAccessOption (cArgs, pptszArgv);
}
else if (_tcsicmp (pptszArgv [1], _T("-DL")) == 0)
{
HandleDefaultLaunchOption (cArgs, pptszArgv);
}
else if (_tcsicmp (pptszArgv [1], _T("-AA")) == 0)
{
HandleApplicationAccessOption (cArgs, pptszArgv);
}
else if (_tcsicmp (pptszArgv [1], _T("-AL")) == 0)
{
HandleApplicationLaunchAndActivateOption (cArgs, pptszArgv);
}
else if (_tcsicmp (pptszArgv [1], _T("-MA")) == 0)
{
HandleMachineAccessOption (cArgs, pptszArgv);
}
else if (_tcsicmp (pptszArgv [1], _T("-ML")) == 0)
{
HandleMachineLaunchAndActivateOption (cArgs, pptszArgv);
}
else if (_tcsicmp (pptszArgv [1], _T("-RUNAS")) == 0)
{
HandleRunAsOption (cArgs, pptszArgv);
}
else
{
ShowUsage (_T("Invalid option specified."));
}
}