(self)
| 900 | self.phishattack() |
| 901 | |
| 902 | def iseeyou(self): |
| 903 | self.clear_scr() |
| 904 | os.system("echo \"[!] ISeeYou is a tool to find Exact Location of Victom By User SocialEngineering or Phishing Engagment..\n[!]Users can expose their local servers to the Internet and decode the location coordinates by looking at the log file\"|boxes -d boy | lolcat") |
| 905 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 906 | |
| 907 | self.check_input(choice, self.iseeyou, ['1', '2', '99']) |
| 908 | |
| 909 | if choice == "1": |
| 910 | os.system("sudo git clone https://github.com/Viralmaniar/I-See-You.git") |
| 911 | os.system("cd I-See-You && sudo chmod u+x ISeeYou.sh") |
| 912 | self.iseeyou() |
| 913 | |
| 914 | if choice == "2": |
| 915 | os.system("cd I-See-You && sudo bash ISeeYou.sh") |
| 916 | self.iseeyou() |
| 917 | |
| 918 | if choice == "99": |
| 919 | self.phishattack() |
| 920 | |
| 921 | def saycheese(self): |
| 922 | self.clear_scr() |
nothing calls this directly
no test coverage detected