shadowbrokers-exploits/windows/Resources/Ep/Scripts/pie.eps
2017-04-14 11:45:07 +02:00

24 lines
1,002 B
PostScript

#-------------------------------------------------------------------------------
# File: pie.eps
# Description: For use after you start an ESKIMOPIE exploit
#
# v0.1 2007-10-04 Initial creation
#-------------------------------------------------------------------------------
echo "ESPI helper script started\rThis script is assuming you've already started the exploit...";
int $aValue = GetInput("What was the value for -a? (Default is 50)");
int $oValue = GetInput("What was the value for -o? (Default is 450)");
string $cmd = "local run -command \"perl -e \\\"\$a=($oValue / $aValue) * 1.62155; print \$a;\\\"\" -redirect";
`$cmd`;
echo "= Exploit is estimated to take this long in minutes\r";
if (prompt"Would you like to ping the target to check for CPU/target health?"){
string $IP = GetInput("What is the target IP?");
echo "Sending a ping every 10 seconds. Background and stop channel to kill...";
int $i = 1;
while($i==1){
`ping -ip $IP`;
sleep(10000);
}
}