forked from PowerShellMafia/PowerSploit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPrivesc.tests.ps1
More file actions
1322 lines (1026 loc) · 49.4 KB
/
Copy pathPrivesc.tests.ps1
File metadata and controls
1322 lines (1026 loc) · 49.4 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
Set-StrictMode -Version Latest
$TestScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
$ModuleRoot = Resolve-Path "$TestScriptRoot\.."
$ModuleManifest = "$ModuleRoot\Privesc\Privesc.psd1"
Remove-Module [P]rivesc
Import-Module $ModuleManifest -Force -ErrorAction Stop
# import PowerUp.ps1 manually so we expose the helper functions for testing
$PowerUpFile = "$ModuleRoot\Privesc\PowerUp.ps1"
Import-Module $PowerUpFile -Force -ErrorAction Stop
function Get-RandomName {
$r = 1..8 | ForEach-Object{Get-Random -max 26}
return ('abcdefghijklmnopqrstuvwxyz'[$r] -join '')
}
function Test-IsAdmin {
return ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
}
########################################################
#
# PowerUp helper functions.
#
########################################################
Describe 'Get-ModifiablePath' {
It 'Should output a file Path, Permissions, and IdentityReference in results.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Null | Out-File -FilePath $FilePath -Force
try {
$Output = Get-ModifiablePath -Path $FilePath | Select-Object -First 1
if ($Output.PSObject.Properties.Name -notcontains 'ModifiablePath') {
Throw "Get-ModifiablePath result doesn't contain 'ModifiablePath' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'Permissions') {
Throw "Get-ModifiablePath result doesn't contain 'Permissions' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'IdentityReference') {
Throw "Get-ModifiablePath result doesn't contain 'IdentityReference' field."
}
}
finally {
$Null = Remove-Item -Path $FilePath -Force -ErrorAction SilentlyContinue
}
}
It 'Should output the correct file path in results.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Null | Out-File -FilePath $FilePath -Force
try {
$Output = Get-ModifiablePath -Path $FilePath | Select-Object -First 1
$Output.ModifiablePath | Should Be $FilePath
}
finally {
$Null = Remove-Item -Path $FilePath -Force -ErrorAction SilentlyContinue
}
}
It 'Should return the proper permission set.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Null | Out-File -FilePath $FilePath -Force
try {
$Output = Get-ModifiablePath -Path $FilePath | Select-Object -First 1
if ($Output.Permissions -notcontains 'WriteData/AddFile') {
Throw "Get-ModifiablePath result doesn't contain the proper permission set."
}
}
finally {
$Null = Remove-Item -Path $FilePath -Force -ErrorAction SilentlyContinue
}
}
It 'Should extract a modifiable file specified as an argument in a command string.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Null | Out-File -FilePath $FilePath -Force
$CmdPath = "'C:\Windows\System32\nonexistent.exe' -i '$FilePath'"
try {
$Output = Get-ModifiablePath -Path $FilePath | Select-Object -First 1
$Output.ModifiablePath | Should Be $FilePath
}
finally {
$Null = Remove-Item -Path $FilePath -Force -ErrorAction SilentlyContinue
}
}
It 'Should accept a path string over the pipeline.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Null | Out-File -FilePath $FilePath -Force
try {
$Output = $FilePath | Get-ModifiablePath
$Output | Should Not BeNullOrEmpty
}
finally {
$Null = Remove-Item -Path $FilePath -Force -ErrorAction SilentlyContinue
}
}
It 'Should accept a file object over the pipeline.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Null | Out-File -FilePath $FilePath -Force
try {
$Output = Get-ChildItem -Path $FilePath | Get-ModifiablePath
$Output | Should Not BeNullOrEmpty
}
finally {
$Null = Remove-Item -Path $FilePath -Force -ErrorAction SilentlyContinue
}
}
}
Describe 'Get-CurrentUserTokenGroupSid' {
if(-not $(Test-IsAdmin)) {
Throw "'Get-CurrentUserTokenGroupSid' Pester test needs local administrator privileges."
}
It 'Should not throw.' {
{Get-CurrentUserTokenGroupSid} | Should Not Throw
}
It 'Should return SIDs and Attributes.' {
$Output = Get-CurrentUserTokenGroupSid | Select-Object -First 1
if ($Output.PSObject.Properties.Name -notcontains 'SID') {
Throw "Get-CurrentUserTokenGroupSid result doesn't contain 'SID' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'Attributes') {
Throw "Get-CurrentUserTokenGroupSid result doesn't contain 'Attributes' field."
}
}
It 'Should return the local administrators group SID.' {
$CurrentUserSids = Get-CurrentUserTokenGroupSid | Select-Object -ExpandProperty SID
if($CurrentUserSids -notcontains 'S-1-5-32-544') {
Throw "Get-CurrentUserTokenGroupSid result doesn't contain local administrators 'S-1-5-32-544' sid"
}
}
}
Describe 'Add-ServiceDacl' {
if(-not $(Test-IsAdmin)) {
Throw "'Add-ServiceDacl' Pester test needs local administrator privileges."
}
It 'Should not throw.' {
{Get-Service | Add-ServiceDacl} | Should Not Throw
}
It 'Should fail for a non-existent service.' {
$ServiceName = Get-RandomName
{$Result = Add-ServiceDacl -Name $ServiceName} | Should Throw
}
It 'Should accept a service name as a parameter argument.' {
$ServiceName = Get-Service | Select-Object -First 1 | Select-Object -ExpandProperty Name
$ServiceWithDacl = Add-ServiceDacl -Name $ServiceName
if(-not $ServiceWithDacl.Dacl) {
Throw "'Add-ServiceDacl' doesn't return a Dacl for a service passed as parameter."
}
}
It 'Should accept an array of service names as a parameter argument.' {
$ServiceNames = Get-Service | Select-Object -First 5 | Select-Object -ExpandProperty Name
$ServicesWithDacl = Add-ServiceDacl -Name $ServiceNames
if(-not $ServicesWithDacl.Dacl) {
Throw "'Add-ServiceDacl' doesn't return Dacls for an array of service names as a parameter."
}
}
It 'Should accept a service object on the pipeline.' {
$Service = Get-Service | Select-Object -First 1
$ServiceWithDacl = $Service | Add-ServiceDacl
if(-not $ServiceWithDacl.Dacl) {
Throw "'Add-ServiceDacl' doesn't return a Dacl for a service object on the pipeline."
}
}
It 'Should accept a service name on the pipeline.' {
$ServiceName = Get-Service | Select-Object -First 1 | Select-Object -ExpandProperty Name
$ServiceWithDacl = $ServiceName | Add-ServiceDacl
if(-not $ServiceWithDacl.Dacl) {
Throw "'Add-ServiceDacl' doesn't return a Dacl for a service name on the pipeline."
}
}
It 'Should accept multiple service objects on the pipeline.' {
$Services = Get-Service | Select-Object -First 5
$ServicesWithDacl = $Services | Add-ServiceDacl
if(-not $ServicesWithDacl.Dacl) {
Throw "'Add-ServiceDacl' doesn't return Dacls for multiple service objects on the pipeline."
}
}
It 'Should accept multiple service names on the pipeline.' {
$ServiceNames = Get-Service | Select-Object -First 5 | Select-Object -ExpandProperty Name
$ServicesWithDacl = $ServiceNames | Add-ServiceDacl
if(-not $ServicesWithDacl.Dacl) {
Throw "'Add-ServiceDacl' doesn't return Dacls for multiple service names on the pipeline."
}
}
It 'Should return a correct service Dacl.' {
$Service = Get-Service | Select-Object -First 1
$ServiceWithDacl = $Service | Add-ServiceDacl
# 'AllAccess' = [uint32]'0x000F01FF'
$Rights = $ServiceWithDacl.Dacl | Where-Object {$_.SecurityIdentifier -eq 'S-1-5-32-544'}
if(($Rights.AccessRights -band 0x000F01FF) -ne 0x000F01FF) {
Throw "'Add-ServiceDacl' doesn't return the correct service Dacl."
}
}
}
Describe 'Set-ServiceBinPath' {
if(-not $(Test-IsAdmin)) {
Throw "'Set-ServiceBinPath' Pester test needs local administrator privileges."
}
It 'Should fail for a non-existent service.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
$Result = $False
{$Result = Set-ServiceBinPath -Name $ServiceName -binPath $ServicePath} | Should Throw
$Result | Should Be $False
}
It 'Should throw with an empty binPath.' {
$ServiceName = Get-RandomName
{Set-ServiceBinPath -Name $ServiceName -binPath ''} | Should Throw
}
It 'Should correctly set a service binary path.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Set-ServiceBinPath -Name $ServiceName -binPath $ServicePath
$Result | Should Be $True
$ServiceDetails = Get-WmiObject -Class win32_service -Filter "Name='$ServiceName'"
$ServiceDetails.PathName | Should be $ServicePath
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should accept a service name as a string on the pipeline.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = $ServiceName | Set-ServiceBinPath -binPath $ServicePath
$Result | Should Be $True
$ServiceDetails = Get-WmiObject -Class win32_service -Filter "Name='$ServiceName'"
$ServiceDetails.PathName | Should be $ServicePath
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should accept a service object on the pipeline.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Get-Service $ServiceName | Set-ServiceBinPath -binPath $ServicePath
$Result | Should Be $True
$ServiceDetails = Get-WmiObject -Class win32_service -Filter "Name='$ServiceName'"
$ServiceDetails.PathName | Should be $ServicePath
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
}
Describe 'Test-ServiceDaclPermission' {
if(-not $(Test-IsAdmin)) {
Throw "'Test-ServiceDaclPermission' Pester test needs local administrator privileges."
}
It 'Should fail for a non-existent service.' {
$ServiceName = Get-RandomName
{$Result = Test-ServiceDaclPermission -Name $ServiceName} | Should Throw
}
It 'Should throw with an empty name.' {
{Test-ServiceDaclPermission -Name ''} | Should Throw
}
It 'Should throw with an invalid permission parameter.' {
$ServiceName = Get-RandomName
{Test-ServiceDaclPermission -Name $ServiceName -Permissions 'nonexistent'} | Should Throw
}
It 'Should throw with an invalid permission set parameter.' {
$ServiceName = Get-RandomName
{Test-ServiceDaclPermission -Name $ServiceName -PermissionSet 'nonexistent'} | Should Throw
}
It 'Should succeed with an existing service.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Test-ServiceDaclPermission -Name $ServiceName
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should succeed with an existing service.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Test-ServiceDaclPermission -Name $ServiceName
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should succeed with a permission parameter.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Test-ServiceDaclPermission -Name $ServiceName -Permissions 'AllAccess'
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should succeed with a permission set parameter.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Test-ServiceDaclPermission -Name $ServiceName -PermissionSet 'ChangeConfig'
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should accept a service name as a string on the pipeline.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = $ServiceName | Test-ServiceDaclPermission
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It 'Should accept a service object on the pipeline.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Result = Get-Service $ServiceName | Test-ServiceDaclPermission
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It "Should fail for an existing service due to insufficient DACL permissions." {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
$UserSid = [System.Security.Principal.WindowsIdentity]::GetCurrent().User.value
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
sc.exe sdset $ServiceName "D:(A;;CCDCSWRPWPDTLOCRSDRCWDWO;;;$UserSid)" | Should Match 'SUCCESS'
{Test-ServiceDaclPermission -Name $ServiceName} | Should Throw
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
It "Should succeed with for an existing service due to sufficient specific DACL permissions." {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
$UserSid = [System.Security.Principal.WindowsIdentity]::GetCurrent().User.value
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
sc.exe sdset $ServiceName "D:(A;;CCDCLCSWRPWPDTLOCRSDRCWDWO;;;$UserSid)" | Should Match 'SUCCESS'
$Result = Test-ServiceDaclPermission -Name $ServiceName
$Result | Should Not BeNullOrEmpty
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
}
########################################################
#
# PowerUp service enumeration functions.
#
########################################################
Describe 'Get-ServiceUnquoted' {
if(-not $(Test-IsAdmin)) {
Throw "'Get-ServiceUnquoted' Pester test needs local administrator privileges."
}
It "Should not throw." {
{Get-ServiceUnquoted} | Should Not Throw
}
It 'Should return service with a space in an unquoted binPath.' {
$ServiceName = Get-RandomName
$ServicePath = 'C:\Program Files\service.exe'
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Output = Get-ServiceUnquoted | Where-Object { $_.ServiceName -eq $ServiceName }
sc.exe delete $ServiceName | Should Match 'SUCCESS'
$Output | Should Not BeNullOrEmpty
$Output.ServiceName | Should Be $ServiceName
$Output.Path | Should Be $ServicePath
}
It 'Should not return services with a quoted binPath.' {
$ServiceName = Get-RandomName
$ServicePath = "'C:\Program Files\service.exe'"
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
Start-Sleep -Seconds 1
$Output = Get-ServiceUnquoted | Where-Object { $_.ServiceName -eq $ServiceName }
sc.exe delete $ServiceName | Should Match 'SUCCESS'
$Output | Should BeNullOrEmpty
}
}
Describe 'Get-ModifiableServiceFile' {
if(-not $(Test-IsAdmin)) {
Throw "'Get-ModifiableServiceFile ' Pester test needs local administrator privileges."
}
It 'Should not throw.' {
{Get-ModifiableServiceFile} | Should Not Throw
}
It 'Should return a service with a modifiable service binary.' {
try {
$ServiceName = Get-RandomName
$ServicePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())" + ".exe"
$Null | Out-File -FilePath $ServicePath -Force
sc.exe create $ServiceName binPath= $ServicePath | Should Match 'SUCCESS'
$Output = Get-ModifiableServiceFile | Where-Object { $_.ServiceName -eq $ServiceName } | Select-Object -First 1
$Properties = $Output.PSObject.Properties | Select-Object -ExpandProperty Name
if ($Properties -notcontains 'ServiceName') {
Throw "Get-ModifiableServiceFile result doesn't contain 'ServiceName' field."
}
if ($Properties -notcontains 'Path') {
Throw "Get-ModifiableServiceFile result doesn't contain 'Path' field."
}
if ($Properties -notcontains 'ModifiableFile') {
Throw "Get-ModifiableServiceFile result doesn't contain 'ModifiableFile' field."
}
if ($Properties -notcontains 'ModifiableFilePermissions') {
Throw "Get-ModifiableServiceFile result doesn't contain 'ModifiableFilePermissions' field."
}
if ($Properties -notcontains 'ModifiableFileIdentityReference') {
Throw "Get-ModifiableServiceFile result doesn't contain 'ModifiableFileIdentityReference' field."
}
if ($Properties -notcontains 'StartName') {
Throw "Get-ModifiableServiceFile result doesn't contain 'StartName' field."
}
if ($Properties -notcontains 'AbuseFunction') {
Throw "Get-ModifiableServiceFile result doesn't contain 'AbuseFunction' field."
}
if ($Properties -notcontains 'CanRestart') {
Throw "Get-ModifiableServiceFile result doesn't contain 'CanRestart' field."
}
if($Output.Path -ne $ServicePath) {
Throw "Get-ModifiableServiceFile result doesn't return correct Path for a modifiable service file."
}
if($Output.ModifiableFile -ne $ServicePath) {
Throw "Get-ModifiableServiceFile result doesn't return correct ModifiableFile for a modifiable service file."
}
$Output.CanRestart | Should Be $True
sc.exe delete $ServiceName | Should Match 'SUCCESS'
}
finally {
$Null = Remove-Item -Path $ServicePath -Force
}
}
}
Describe 'Get-ModifiableService' {
if(-not $(Test-IsAdmin)) {
Throw "'Get-ModifiableService' Pester test needs local administrator privileges."
}
It 'Should not throw.' {
{Get-ModifiableService} | Should Not Throw
}
It 'Should return a modifiable service.' {
$Output = Get-ModifiableService | Where-Object { $_.ServiceName -eq 'Dhcp'} | Select-Object -First 1
$Output | Should Not BeNullOrEmpty
$Properties = $Output.PSObject.Properties | Select-Object -ExpandProperty Name
if ($Properties -notcontains 'ServiceName') {
Throw "Get-ModifiableService result doesn't contain 'ServiceName' field."
}
if ($Properties -notcontains 'Path') {
Throw "Get-ModifiableService result doesn't contain 'Path' field."
}
if ($Properties -notcontains 'StartName') {
Throw "Get-ModifiableService result doesn't contain 'StartName' field."
}
if ($Properties -notcontains 'AbuseFunction') {
Throw "Get-ModifiableService result doesn't contain 'AbuseFunction' field."
}
if ($Properties -notcontains 'CanRestart') {
Throw "Get-ModifiableService result doesn't contain 'CanRestart' field."
}
}
}
Describe 'Get-ServiceDetail' {
It 'Should return results for a valid service.' {
$Output = Get-ServiceDetail -Name 'Dhcp'
$Output | Should Not BeNullOrEmpty
}
It 'Should throw with an empty Name.' {
$ServiceName = Get-RandomName
{Get-ServiceDetail -Name ''} | Should Throw
}
It 'Should throw for an invalid service.' {
{Get-ServiceDetail -Name 'NonExistent123'} | Should Throw
}
It 'Should accept a service name on the pipeline.' {
$Output = 'Dhcp' | Get-ServiceDetail
$Output | Should Not BeNullOrEmpty
}
It 'Should accept a service object on the pipeline.' {
$Output = Get-Service 'Dhcp' | Get-ServiceDetail
$Output | Should Not BeNullOrEmpty
}
}
########################################################
#
# PowerUp service abuse functions.
#
########################################################
Describe 'Invoke-ServiceAbuse' {
if(-not $(Test-IsAdmin)) {
Throw "'Invoke-ServiceAbuse' Pester test needs local administrator privileges."
}
BeforeEach {
$ServicePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())" + ".exe"
$Null = sc.exe create 'PowerUpService' binPath= $ServicePath
}
AfterEach {
$Null = sc.exe delete 'PowerUpService'
$Null = $(net user john /delete >$Null 2>&1)
}
It 'Should abuse a vulnerable service to add a local administrator with default options.' {
$Output = Invoke-ServiceAbuse -Name 'PowerUpService'
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
}
It 'Should accept the -Force switch.' {
$Output = Invoke-ServiceAbuse -Name 'PowerUpService' -Force
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
}
It 'Should accept a service name on the pipeline.' {
$Output = 'PowerUpService' | Invoke-ServiceAbuse
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
}
It 'Should accept a service object on the pipeline.' {
$Output = Get-Service 'PowerUpService' | Invoke-ServiceAbuse
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
}
It 'User should not be created for a non-existent service.' {
{Invoke-ServiceAbuse -ServiceName 'NonExistentService456'} | Should Throw
if( ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' should not have been created for non-existent service."
}
}
It 'Should accept custom user/password arguments.' {
$Output = Invoke-ServiceAbuse -ServiceName 'PowerUpService' -Username 'PowerUp' -Password 'PASSword123!'
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Administrators) -match 'PowerUp')) {
Throw "Local user 'PowerUp' not created."
}
$Null = $(net user PowerUp /delete >$Null 2>&1)
}
It 'Should accept a credential object.' {
$Username = 'PowerUp123'
$Password = ConvertTo-SecureString 'PASSword123!' -AsPlaintext -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $Username, $Password
$Output = Invoke-ServiceAbuse -ServiceName 'PowerUpService' -Credential $Credential
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Administrators) -match 'PowerUp')) {
Throw "Local user 'PowerUp' not created."
}
$Null = $(net user PowerUp123 /delete >$Null 2>&1)
}
It 'Should accept an alternate LocalGroup.' {
$Output = Invoke-ServiceAbuse -Name 'PowerUpService' -LocalGroup 'Guests'
$Output.Command | Should Match 'net'
if( -not ($(net localgroup Guests) -match 'john')) {
Throw "Local user 'john' not added to 'Guests'."
}
}
It 'Should accept a custom command.' {
$FilePath = "$(Get-Location)\$([IO.Path]::GetRandomFileName())"
$Output = Invoke-ServiceAbuse -ServiceName 'PowerUpService' -Command 'net user testing Password123! /add'
if( -not ($(net user) -match "testing")) {
Throw 'Custom command failed.'
}
$Null = $(net user testing /delete >$Null 2>&1)
}
}
Describe 'Install-ServiceBinary' {
if(-not $(Test-IsAdmin)) {
Throw "'Install-ServiceBinary' Pester test needs local administrator privileges."
}
BeforeEach {
$ServicePath = "$(Get-Location)\powerup.exe"
$Null | Out-File -FilePath $ServicePath -Force
$Null = sc.exe create 'PowerUpService' binPath= $ServicePath
}
AfterEach {
try {
$Null = Stop-Service -Name PowerUpService -Force
$Null = sc.exe delete 'PowerUpService'
$Null = $(net user john /delete >$Null 2>&1)
}
finally {
if(Test-Path "$(Get-Location)\powerup.exe") {
$Null = Remove-Item -Path "$(Get-Location)\powerup.exe" -Force -ErrorAction SilentlyContinue
}
if(Test-Path "$(Get-Location)\powerup.exe.bak") {
$Null = Remove-Item -Path "$(Get-Location)\powerup.exe.bak" -Force -ErrorAction SilentlyContinue
}
}
}
It 'Should abuse a vulnerable service binary to add a local administrator with default options.' {
$Output = Install-ServiceBinary -ServiceName 'PowerUpService'
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
$Null = Stop-Service -Name PowerUpService -Force
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
It 'Should accept a service Name on the pipeline.' {
$Output = 'PowerUpService' | Install-ServiceBinary
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
$Null = Stop-Service -Name PowerUpService -Force
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
It 'Should accept a service object on the pipeline.' {
$Output = Get-Service 'PowerUpService' | Install-ServiceBinary
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' not created."
}
$Null = Stop-Service -Name PowerUpService -Force
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
It 'User should not be created for a non-existent service.' {
{Install-ServiceBinary -ServiceName "NonExistentService456"} | Should Throw
if( ($(net localgroup Administrators) -match 'john')) {
Throw "Local user 'john' should not have been created for non-existent service."
}
}
It 'Should accept custom user/password arguments.' {
try {
$Output = Install-ServiceBinary -ServiceName 'PowerUpService' -Username 'PowerUp' -Password 'PASSword123!'
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net localgroup Administrators) -match 'PowerUp')) {
Throw "Local user 'PowerUp' not created."
}
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
finally {
$Null = $(net user PowerUp /delete >$Null 2>&1)
}
}
It 'Should accept a credential object.' {
$Username = 'PowerUp123'
$Password = ConvertTo-SecureString 'PASSword123!' -AsPlaintext -Force
$Credential = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $Username, $Password
$Output = Install-ServiceBinary -ServiceName 'PowerUpService' -Credential $Credential
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net localgroup Administrators) -match 'PowerUp123')) {
Throw "Local user 'PowerUp123' not created."
}
$Null = $(net user PowerUp123 /delete >$Null 2>&1)
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
It 'Should accept an alternate LocalGroup.' {
try {
$Output = Install-ServiceBinary -ServiceName 'PowerUpService' -Username 'PowerUp' -Password 'PASSword123!' -LocalGroup 'Guests'
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net localgroup Guests) -match 'PowerUp')) {
Throw "Local user 'PowerUp' not created."
}
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
finally {
$Null = $(net user PowerUp /delete >$Null 2>&1)
}
}
It 'Should accept a custom command.' {
try {
$Output = Install-ServiceBinary -ServiceName 'PowerUpService' -Command "net user testing Password123! /add"
$Output.Command | Should Match 'net'
$Null = Start-Service -Name PowerUpService -ErrorAction SilentlyContinue
Start-Sleep -Seconds 3
if( -not ($(net user) -match "testing")) {
Throw "Custom command failed."
}
$Output = Restore-ServiceBinary -ServiceName PowerUpService
"$(Get-Location)\powerup.exe.bak" | Should Not Exist
}
finally {
$Null = $(net user testing /delete >$Null 2>&1)
}
}
}
########################################################
#
# PowerUp .dll hijacking functions.
#
########################################################
Describe 'Find-ProcessDLLHijack' {
It 'Should return results.' {
$Output = Find-ProcessDLLHijack
$Output | Should Not BeNullOrEmpty
}
It 'Should accept a Process name on the pipeline.' {
{'powershell' | Find-ProcessDLLHijack} | Should Not Throw
}
It 'Should accept a service object on the pipeline.' {
{Get-Process powershell | Find-ProcessDLLHijack} | Should Not Throw
}
}
Describe 'Find-PathDLLHijack' {
if(-not $(Test-IsAdmin)) {
Throw "'Find-PathDLLHijack' Pester test needs local administrator privileges."
}
It 'Should find a hijackable %PATH% folder.' {
New-Item -Path 'C:\PowerUpTest\' -ItemType directory -Force
$OldPath = $Env:PATH
$Env:PATH += ';C:\PowerUpTest\'
$Output = Find-PathDLLHijack | Where-Object {$_.ModifiablePath -like "*PowerUpTest*"} | Select-Object -First 1
$Env:PATH = $OldPath
$Output.ModifiablePath | Should Be 'C:\PowerUpTest\'
if ($Output.PSObject.Properties.Name -notcontains '%PATH%') {
Throw "Find-PathDLLHijack result doesn't contain '%PATH%' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'ModifiablePath') {
Throw "Find-PathDLLHijack result doesn't contain 'ModifiablePath' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'Permissions') {
Throw "Find-PathDLLHijack result doesn't contain 'Permissions' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'IdentityReference') {
Throw "Find-PathDLLHijack result doesn't contain 'IdentityReference' field."
}
$Null = Remove-Item -Recurse -Force 'C:\PowerUpTest\' -ErrorAction SilentlyContinue
}
It "Should find a hijackable %PATH% folder that doesn't yet exist." {
$OldPath = $Env:PATH
$Env:PATH += ';C:\PowerUpTest\'
$Output = Find-PathDLLHijack | Where-Object {$_.'%PATH%' -eq 'C:\PowerUpTest\'} | Select-Object -First 1
$Env:PATH = $OldPath
$Output.ModifiablePath | Should Be 'C:\'
if ($Output.PSObject.Properties.Name -notcontains '%PATH%') {
Throw "Find-PathDLLHijack result doesn't contain 'ModifiablePath' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'ModifiablePath') {
Throw "Find-PathDLLHijack result doesn't contain 'ModifiablePath' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'Permissions') {
Throw "Find-PathDLLHijack result doesn't contain 'Permissions' field."
}
if ($Output.PSObject.Properties.Name -notcontains 'IdentityReference') {
Throw "Find-PathDLLHijack result doesn't contain 'IdentityReference' field."
}
}
}
Describe 'Write-HijackDll' {
# won't actually execute on Win8+ with the wlbsctrl.dll method
# TODO: write tests to properly cover parameter validation
It 'Should write a .dll that executes a custom command.' {
try {
Write-HijackDll -DllPath "$(Get-Location)\powerup.dll" -Command 'net user testing Password123! /add'
"$(Get-Location)\powerup.dll" | Should Exist
"$(Get-Location)\debug.bat" | Should Exist
}
finally {
$Null = Remove-Item -Path "$(Get-Location)\powerup.dll" -Force -ErrorAction SilentlyContinue
$Null = Remove-Item -Path "$(Get-Location)\debug.bat" -Force -ErrorAction SilentlyContinue
}
}
}
########################################################
#
# PowerUp registry checks.
#
########################################################
Describe 'Get-RegistryAlwaysInstallElevated' {
# TODO: set registry key, ensure it retrieves
It 'Should not throw.' {
{Get-RegistryAlwaysInstallElevated} | Should Not Throw
}
}