PHP- Kodu:

<?php


if($_POST){


set_time_limit(600000000000);


$siteler = $_POST['siteler'];


$siteler = explode("\r\n",$siteler);


echo "<center><table border = "1" cellpadding="5" cellspacing="2">";


foreach($siteler as $site){


//$site = str_replace("https://","",$site);


echo "<tr>";


if(@$dosya = fopen ("https://$site/wp-config.php", "r")){


echo "<td><a href = "http:\/\/$site" target = "_blank">$site</a></td><td bgcolor = "blue"><b> Wordpress</b></td>";


flush(); // Tamponu temizle.


ob_flush();


usleep(500000);


}elseif(@$dosya = fopen ("https://$site/configuration.php", "r")){


echo "<td><a href = "http:\/\/$site" target = "_blank">$site</a><td bgcolor = "orange"><b> Joomla</b></td>";


flush(); // Tamponu temizle.


ob_flush();


usleep(500000);


}elseif(@$dosya = fopen ("https://$site/includes/config.php", "r")){


echo "<td><a href = "http:\/\/$site" target = "_blank">$site</a><td bgcolor = "red"><b> vbulletin</b></td>";


flush(); // Tamponu temizle.


ob_flush();


usleep(500000);


}elseif(@$dosya = fopen ("https://$site/Settings.php", "r")){


echo "<td><a href = "http:\/\/$site" target = "_blank">$site</a><td bgcolor = "green"><b> SMF</b></td>";


flush(); // Tamponu temizle.


ob_flush();


usleep(500000);


}elseif(@$dosya = fopen ("https://$site/inc/config.php", "r")){


echo "<td><a href = "http:\/\/$site" target = "_blank">$site</a><td bgcolor = "yellow"><b> MyBB</b></td>";


flush(); // Tamponu temizle.


ob_flush();


usleep(500000);


}else{


echo "<td><a href = "http:\/\/$site" target = "_blank">$site</a><td bgcolor = "gray"><b> Bilinmeyen</b></td>";


flush(); // Tamponu temizle.


ob_flush();


usleep(500000);


}





echo "</tr>";


}


echo "</table><center>";





}else{





?>








<form action = "" method = "POST">


Siteler : <textarea name = "siteler" rows = "25" cols = "70"></textarea>


<button>gönder</button>


</form>



<?php





}





?>