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 : contacts.php
<div class="admin-table-wrap"> <table class="admin-table"> <thead> <tr> <th>Nom</th><th>Email</th><th>Société</th><th>Sujet</th><th>Langue</th><th>Date</th> </tr> </thead> <tbody> <?php if (empty($contacts)): ?> <tr><td colspan="6" style="text-align:center;padding:3rem;color:#5e5e5e;">Aucun message pour le moment.</td></tr> <?php else: ?> <?php foreach ($contacts as $c): ?> <tr class="contact-row" data-message="<?= htmlspecialchars($c['message']) ?>"> <td style="color:#f0ece4;font-weight:500"><?= htmlspecialchars($c['full_name']) ?></td> <td><a href="mailto:<?= htmlspecialchars($c['email']) ?>"><?= htmlspecialchars($c['email']) ?></a></td> <td><?= htmlspecialchars($c['company'] ?: '—') ?></td> <td><?= htmlspecialchars(mb_substr($c['subject'], 0, 50)) ?></td> <td><span class="badge-lang"><?= strtoupper(htmlspecialchars($c['lang'])) ?></span></td> <td><?= date('d/m/Y H:i', strtotime($c['created_at'])) ?></td> </tr> <!-- Message expandable --> <tr class="contact-message-row"> <td colspan="6"> <div class="contact-message"> <strong>Message :</strong> <?= nl2br(htmlspecialchars($c['message'])) ?> <?php if ($c['phone']): ?> <br><strong>Tél :</strong> <?= htmlspecialchars($c['phone']) ?> <?php endif; ?> </div> </td> </tr> <?php endforeach; ?> <?php endif; ?> </tbody> </table> </div> <style> .badge-lang { font-family:'Barlow Condensed',sans-serif;font-size:.7rem;font-weight:700; letter-spacing:.15em;padding:.2rem .55rem;background:rgba(201,168,76,.12); color:#C9A84C;border:1px solid rgba(201,168,76,.25); } .contact-row { cursor: pointer; } .contact-message-row { display: none; } .contact-message-row.open { display: table-row; } .contact-message { padding: 1rem 1.25rem; background: #1c1c1c; font-size: .88rem; color: #8e8e8e; line-height: 1.7; border-left: 3px solid #C9A84C; } </style> <script> document.querySelectorAll('.contact-row').forEach(row => { row.addEventListener('click', () => { const next = row.nextElementSibling; next?.classList.toggle('open'); }); }); </script>
Close