MCPcopy
hub / github.com/Z4nzu/hackingtool / phishattack

Method phishattack

hackingtool.py:770–803  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

768 self.wire()
769 ## PHISHING ATTACK START ###
770 def phishattack(self):
771 self.clear_scr()
772 os.system("figlet -f standard -c Phishing Attack Tools | lolcat")
773
774 print("""
775 [1] Setoolkit
776 [2] SocialFish
777 [3] HiddenEye
778 [4] Evilginx2
779 [5] I-See_You(Get Location using phishing attack)
780 [6] SayCheese (Grab target's Webcam Shots)
781 [7] QR Code Jacking
782 [8] ShellPhish
783 [9] BlackPhish
784 [99] Back To Main Menu
785 """)
786
787 functions_phishattack = {
788 '1':self.setoolkit,
789 '2':self.socialfish,
790 '3':self.hiddeneye,
791 '4':self.evilginx,
792 '5':self.iseeyou,
793 '6':self.saycheese,
794 '7':self.qrjacking,
795 '8':self.shellphish,
796 '9':self.blackphish,
797 '99':self.menu
798 }
799
800 choice = input("Z4nzu =>> ")
801 self.check_input(choice, self.phishattack, functions_phishattack.keys())
802
803 functions_phishattack[choice]()
804
805 def blackphish(self):
806 self.clear_scr()

Callers 9

blackphishMethod · 0.95
setoolkitMethod · 0.95
socialfishMethod · 0.95
hiddeneyeMethod · 0.95
evilginxMethod · 0.95
iseeyouMethod · 0.95
saycheeseMethod · 0.95
qrjackingMethod · 0.95
shellphishMethod · 0.95

Calls 2

clear_scrMethod · 0.95
check_inputMethod · 0.95

Tested by

no test coverage detected