Can you help me with this PHP script?

Bradley

New member
How can I make it to where I could put a couple different URLs like.. more than one iAttackHeader to refresh one right after the other?

So iListHeader loads then I need to add like 4 different iAttackHeaders so it loads them all in random order really fast?

<?PHP
echo "TibTibs is AWESOME!\n\nBegin loading script...\n";
/////////////////////////////////////////////
// THE HITLIST HEADER HERE //////////////////
/////////////////////////////////////////////
$iListHeader = "GET /proxy/relay.proxy?opensocial_url=http%3A//mob-dynamic-lb1.mobsters06.com/mob/attack_hitlist?user_id=487667686&target_id=435537312&session_id=a3a16d066ce79ad6bfc5308a6603d1b82a9c653a&auth_key=c60fd7df0cc445cc650219b4e2f30152c5f6a9de&nocache=1265534050174";
/////////////////////////////////////////////
// DELAY BETWEEN LISTING AND ATTACKING //////
/////////////////////////////////////////////
$iHitlistDelay = 0.2;
/////////////////////////////////////////////
// THE ATTACK / ATTACK_HITLIST HEADER HERE //
/////////////////////////////////////////////
$iAttackHeader = "GET /proxy/relay.proxy?opensocial_url=http%3A//mob-dynamic-lb1.mobsters06.com/mob/attack_hitlist?user_id=487667686&target_id=435537312&session_id=a3a16d066ce79ad6bfc5308a6603d1b82a9c653a&auth_key=c60fd7df0cc445cc650219b4e2f30152c5f6a9de&nocache=1265534050174
";
/////////////////////////////////////////////
// DELAY BETWEEN ATTACKS, RECOMMENDED 0 /////
/////////////////////////////////////////////
$iAttackDelay = 0;
/////////////////////////////////////////////
// NUMBER OF TIMES TO ATTACK ////////////////
/////////////////////////////////////////////
$iAttackTimes = 20;
/////////////////////////////////////////////
$iPrint = "MESSAGE";
/////////////////////////////////////////////
///////// DO NOT EDIT BELOW THIS LINE ///////
/////////////////////////////////////////////
$iListHeader = explode("&opensocial_authtype", str_replace("GET /proxy/relay.proxy?opensocial_url=", "", urldecode($iListHeader)));
$iAttackHeader = explode("&opensocial_authtype", str_replace("GET /proxy/relay.proxy?opensocial_url=", "", urldecode($iAttackHeader)));
$iHitlistDelay *= 1000000;
$iAttackDelay *= 1000000;
echo "Script loaded, begin hitlisting and attacking...\n\n";
$iPrint[0] = file_get_contents($iListHeader[0]);
usleep($iHitlistDelay);
for($i=1; $i<$iAttackTimes+1; $i++)
{
$iPrint[$i] = file_get_contents($iAttackHeader[0]);
usleep($iAttackDelay);
}
for($i=1; $i<$iAttackTimes+1; $i++)
{
if(stristr($iPrint[$i], "<message>"))
{
xml_parse_into_struct($iP=xml_parser_create(), $iPrint[$i], $iS, $iX);xml_parser_free($iP);
$iMessage = strip_tags($iS[$iX['MESSAGE'][0]]['value']);
sleep($iAttackDelay);
}
else $iMessage = "You should probably check your headers... $iPrint[$i]";
echo "$i : ".$iMessage."\n";
}
echo "You can close this script at any time...";
sleep(100000);
?>
 
Back
Top