├── Core ├── IntroSeen.txt ├── Languages │ ├── __pycache__ │ │ ├── italian.cpython-39.pyc │ │ ├── russian.cpython-39.pyc │ │ └── spanish.cpython-39.pyc │ ├── italian.py │ ├── russian.py │ └── spanish.py ├── Mailer │ ├── MailHelp.py │ ├── MailerMain.py │ ├── __pycache__ │ │ ├── Internet_Check.cpython-37.pyc │ │ ├── MailHelp.cpython-37.pyc │ │ ├── MailHelp.cpython-39.pyc │ │ ├── MailerMain.cpython-39.pyc │ │ ├── accountsaver.cpython-37.pyc │ │ ├── accountsaver.cpython-39.pyc │ │ ├── color.cpython-37.pyc │ │ ├── gmail.cpython-37.pyc │ │ ├── live.cpython-37.pyc │ │ └── yahoo.cpython-37.pyc │ └── color.py ├── __pycache__ │ ├── Youtube.cpython-37.pyc │ ├── anotherLang.cpython-39.pyc │ ├── devicemenu.cpython-37.pyc │ ├── devicemenu.cpython-39.pyc │ ├── eletter.cpython-37.pyc │ ├── eletter.cpython-39.pyc │ ├── ipmenu.cpython-37.pyc │ ├── ipmenu.cpython-39.pyc │ ├── mailer.cpython-37.pyc │ ├── mailer.cpython-39.pyc │ ├── pre.cpython-37.pyc │ └── pre.cpython-39.pyc ├── anotherLang.py ├── devicemenu.py ├── eletter.py ├── helper │ ├── Banners.py │ ├── RedirectBypass.py │ ├── ToDo.py │ ├── __init__.py │ ├── __pycache__ │ │ ├── Banners.cpython-39.pyc │ │ ├── RedirectBypass.cpython-37.pyc │ │ ├── RedirectBypass.cpython-39.pyc │ │ ├── ToDo.cpython-37.pyc │ │ ├── ToDo.cpython-39.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── __init__.cpython-39.pyc │ │ ├── animation.cpython-37.pyc │ │ ├── animation.cpython-39.pyc │ │ ├── color.cpython-37.pyc │ │ ├── color.cpython-39.pyc │ │ ├── date.cpython-37.pyc │ │ └── date.cpython-39.pyc │ ├── animation.py │ ├── color.py │ ├── color.pyc │ └── date.py ├── ipmenu.py └── pre.py ├── LICENSE ├── Makefile ├── Permission.txt ├── PhishMailer.py ├── README.md ├── Version.dat ├── config.json ├── emails.txt ├── passwords.txt └── test └── date_test.py /Core/IntroSeen.txt: -------------------------------------------------------------------------------- 1 | Yes -------------------------------------------------------------------------------- /Core/Languages/__pycache__/italian.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiZken/PhishMailer/114a902973b399f495ecff8114b62251a603b359/Core/Languages/__pycache__/italian.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Languages/__pycache__/russian.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiZken/PhishMailer/114a902973b399f495ecff8114b62251a603b359/Core/Languages/__pycache__/russian.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Languages/__pycache__/spanish.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BiZken/PhishMailer/114a902973b399f495ecff8114b62251a603b359/Core/Languages/__pycache__/spanish.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Languages/italian.py: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | import time 4 | 5 | import os 6 | 7 | red = ("\033[1;31;40m") 8 | green = ("\033[1;32;40m") 9 | white = ("\033[1;37;40m") 10 | blue = ("\033[1;34;40m") 11 | yellow = ("\033[1;33;40m") 12 | start = (green + "[" + white + "+" + green + "]" + white) 13 | alert = (green + "[" + red + "!" + green + "]" + white) 14 | 15 | def numbering(num): 16 | return green + "[" + white + str(num) + green + "]" 17 | 18 | def CurrentDir(): 19 | path = os.getcwd() 20 | print(green + "[" + white + "+" + green + "]" + white + " Your Templates Will Be Saved Here " + path) 21 | 22 | def ItalianInstagram(): 23 | Target = input(start + " Inserisci il nome dell'obiettivo: ") 24 | TargetAccount = input(start + " Inserisci il nome dell'account di destinazione: ") 25 | url = input(start + " Inserisci l'URL di phishing: ") 26 | TargetEmail = input(start + " Inserisci l'email di destinazione: ") 27 | 28 | instagram = (""" 29 |
34 |
|
147 |
|
211 | | |||||
214 |
|
249 | |||||
252 | |
276 |
|
332 |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
34 |
|
147 |
|
211 | | |||
214 |
|
249 | |||
252 | |
276 |
|
332 |
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|
231 |
281 |
|
Redirecting....
63 | 64 | """.format(Url)) 65 | Html_file.close() 66 | print(alert + " File Created, Saved At: " + FileLocation) 67 | 68 | elif Creator == 2: 69 | FileName = input(start + "Name Of File: " + white) 70 | print(alert + " Enter for '/root/Desktop/PhishMailer/Redirection/'") 71 | FileSave = input(start + " Where Do You Want To Save The File?: " + white) 72 | if FileSave == "": 73 | FileLocation = "/root/Desktop/PhishMailer/Redirection/" 74 | else: 75 | FileLocation = FileSave 76 | CompleteLocator = os.path.join(FileLocation, FileName+".html") 77 | Html_file = open(CompleteLocator,"w") 78 | Html_file.write(""" 79 | 80 | 81 | 82 |Redirecting....
87 | 88 | """) 89 | Html_file.close() 90 | 91 | print(alert + " HTML File Saved At " + FileLocation) 92 | print(alert + " Remember You Need To Enter Your PhishingUrl Manually!") 93 | 94 | elif Creator == 99: 95 | os.system("clear") 96 | print(red + "Hope It Works Out Another Way") 97 | os.system("clear") 98 | 99 | else: 100 | print("OK...") 101 | 102 | def HowInfo(): 103 | print(green) 104 | print(""" 105 | __ ___ __ __ ___ __ ___ __ __ 106 | |__) |__ | \ | |__) |__ / ` | / \ |__) 107 | | \ |___ |__/ | | \ |___ \__, | \__/ | \ 108 | ----------------Info And HowTo---------------""") 109 | print(numbering(1) + white + " How To Use " + numbering(1)) 110 | print(numbering(2) + white + " How It Works " + numbering(2)) 111 | print(numbering(3) + white + " To Creator " + numbering(3)) 112 | print(numbering(99) + white + " Exit " + numbering(99)) 113 | 114 | OptionPick = int(input(green + "root@phishmailer/Bypass/Redirect/Help:~ " + white)) 115 | 116 | if OptionPick == 99: 117 | RedirectCreator() 118 | elif OptionPick == 1: 119 | print(numbering(1) + white + " Create The Redirection Html File And Make Sure You Type In Your URL Correctly \n") 120 | print(numbering(2) + white + " Now You Need A Hosting Service Like 000Webhost (They Will Not Block This) \n") 121 | print(numbering(3) + white + " Upload Your Redirection Page Recommend That You Name This 'index.html' So It Will Run automatically \n") 122 | print(numbering(4) + white + " And When You Create Your Phishing Email Be Sure That You Put In The Url To Your Redirection Site And Not Your Phishing Url \n") 123 | print(numbering(5) + white + " When You Send Your Phishing Email Now The Email Service can't 'Read' Your Phishing Site That Is Connected Too The Email \n") 124 | print(start + white + " This Will Make It A Little harder For Them To Flag The Email") 125 | RedirectionMain() 126 | 127 | elif OptionPick == 2: 128 | print(numbering(1) + white + " One Way That Your Emails Get Flaged Is Because The Email Service Provider Scans All The Sites That Is Connected To The Email \n") 129 | print(numbering(2) + white + " So When You Put In A Url That Just Redirects The Target To The Real Phishing Site It Will Not Read The Phishing Site Just the Redirection \n") 130 | print(numbering(3) + white + " This Is One Way To Help You Launch A successful Phishing Attack \n") 131 | print(alert + white + " This Is Not The Only Way They Detect Phishing Emails So It Won't Always Works But It Help Me Out In The Beginning \n") 132 | print(start + white + " I Will Come With More Ways To Try Bypass The Spam Filters") 133 | RedirectionMain() 134 | 135 | elif OptionPick == 3: 136 | os.system("clear") 137 | RedirectCreator() 138 | 139 | else: 140 | print(start + " Hope I See You Soon Again " + start) 141 | sys.exit() 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | #HtmlKod: 150 | 151 | # 152 | # 153 | # 154 | #
|
136 |
137 |
|
258 |
259 |
318 |
|
356 |