(self)
| 955 | self.phishattack() |
| 956 | |
| 957 | def shellphish(self): |
| 958 | self.clear_scr() |
| 959 | os.system("echo \"Phishing Tool for 18 social media \n\t[!]https://github.com/An0nUD4Y/shellphish \"|boxes -d boy | lolcat") |
| 960 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 961 | |
| 962 | self.check_input(choice, self.shellphish, ['1', '2', '99']) |
| 963 | |
| 964 | if choice == "1": |
| 965 | os.system("git clone https://github.com/An0nUD4Y/shellphish") |
| 966 | self.shellphish() |
| 967 | |
| 968 | if choice == "2": |
| 969 | os.system("cd shellphish;sudo bash shellphish.sh") |
| 970 | self.shellphish() |
| 971 | |
| 972 | if choice == "99": |
| 973 | self.phishattack() |
| 974 | |
| 975 | ### Forensic Tools #### |
| 976 | def forensic(self): |
| 977 | self.clear_scr() |
| 978 | os.system("figlet -f standard Forensic Tools | lolcat ") |
nothing calls this directly
no test coverage detected