├── 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/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Languages/__pycache__/italian.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Languages/__pycache__/russian.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Languages/__pycache__/russian.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Languages/__pycache__/spanish.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Languages/__pycache__/spanish.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Languages/italian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Languages/italian.py -------------------------------------------------------------------------------- /Core/Languages/russian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Languages/russian.py -------------------------------------------------------------------------------- /Core/Languages/spanish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Languages/spanish.py -------------------------------------------------------------------------------- /Core/Mailer/MailHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/MailHelp.py -------------------------------------------------------------------------------- /Core/Mailer/MailerMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/MailerMain.py -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/Internet_Check.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/Internet_Check.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/MailHelp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/MailHelp.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/MailHelp.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/MailHelp.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/MailerMain.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/MailerMain.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/accountsaver.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/accountsaver.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/accountsaver.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/accountsaver.cpython-39.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/color.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/color.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/gmail.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/gmail.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/live.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/live.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/__pycache__/yahoo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/__pycache__/yahoo.cpython-37.pyc -------------------------------------------------------------------------------- /Core/Mailer/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/Mailer/color.py -------------------------------------------------------------------------------- /Core/__pycache__/Youtube.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/Youtube.cpython-37.pyc -------------------------------------------------------------------------------- /Core/__pycache__/anotherLang.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/anotherLang.cpython-39.pyc -------------------------------------------------------------------------------- /Core/__pycache__/devicemenu.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/devicemenu.cpython-37.pyc -------------------------------------------------------------------------------- /Core/__pycache__/devicemenu.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/devicemenu.cpython-39.pyc -------------------------------------------------------------------------------- /Core/__pycache__/eletter.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/eletter.cpython-37.pyc -------------------------------------------------------------------------------- /Core/__pycache__/eletter.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/eletter.cpython-39.pyc -------------------------------------------------------------------------------- /Core/__pycache__/ipmenu.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/ipmenu.cpython-37.pyc -------------------------------------------------------------------------------- /Core/__pycache__/ipmenu.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/ipmenu.cpython-39.pyc -------------------------------------------------------------------------------- /Core/__pycache__/mailer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/mailer.cpython-37.pyc -------------------------------------------------------------------------------- /Core/__pycache__/mailer.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/mailer.cpython-39.pyc -------------------------------------------------------------------------------- /Core/__pycache__/pre.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/pre.cpython-37.pyc -------------------------------------------------------------------------------- /Core/__pycache__/pre.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/__pycache__/pre.cpython-39.pyc -------------------------------------------------------------------------------- /Core/anotherLang.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/anotherLang.py -------------------------------------------------------------------------------- /Core/devicemenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/devicemenu.py -------------------------------------------------------------------------------- /Core/eletter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/eletter.py -------------------------------------------------------------------------------- /Core/helper/Banners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/Banners.py -------------------------------------------------------------------------------- /Core/helper/RedirectBypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/RedirectBypass.py -------------------------------------------------------------------------------- /Core/helper/ToDo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/ToDo.py -------------------------------------------------------------------------------- /Core/helper/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Core/helper/__pycache__/Banners.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/Banners.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/RedirectBypass.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/RedirectBypass.cpython-37.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/RedirectBypass.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/RedirectBypass.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/ToDo.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/ToDo.cpython-37.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/ToDo.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/ToDo.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/animation.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/animation.cpython-37.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/animation.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/animation.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/color.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/color.cpython-37.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/color.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/color.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/date.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/date.cpython-37.pyc -------------------------------------------------------------------------------- /Core/helper/__pycache__/date.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/__pycache__/date.cpython-39.pyc -------------------------------------------------------------------------------- /Core/helper/animation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/animation.py -------------------------------------------------------------------------------- /Core/helper/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/color.py -------------------------------------------------------------------------------- /Core/helper/color.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/color.pyc -------------------------------------------------------------------------------- /Core/helper/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/helper/date.py -------------------------------------------------------------------------------- /Core/ipmenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/ipmenu.py -------------------------------------------------------------------------------- /Core/pre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Core/pre.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/Makefile -------------------------------------------------------------------------------- /Permission.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PhishMailer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/PhishMailer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/README.md -------------------------------------------------------------------------------- /Version.dat: -------------------------------------------------------------------------------- 1 | Version=2.2 2 | -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/config.json -------------------------------------------------------------------------------- /emails.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /passwords.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/date_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DARKSTUFF-LAB/PhishMailer/HEAD/test/date_test.py --------------------------------------------------------------------------------