Skip to content

Instantly share code, notes, and snippets.

View isteiger's full-sized avatar

Ian Steiger isteiger

View GitHub Profile
@isteiger
isteiger / wcpsspwn.ps1
Created March 24, 2025 13:55
pwn wcpss
# Self-elevate the script so with a UAC prompt since this script needs to be run as an Administrator in order to function properly
if (-Not ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole]'Administrator')) {
switch ((Get-Culture).Name) {
'pt-BR' { Write-Host 'Você não executou este script como Administrador. Este script será executado automaticamente como Administrador.' -ForegroundColor Green }
Default { Write-Host 'You didn''t run this script as an Administrator. This script will self elevate to run as an Administrator and continue.' -ForegroundColor Green }
}
Start-Sleep -Milliseconds 2500
Start-Process PowerShell.exe -ArgumentList ("-NoProfile -ExecutionPolicy Bypass -File `"{0}`"" -f $PSCommandPath) -Verb RunAs
Exit