(self)
| 861 | self.phishattack() |
| 862 | |
| 863 | def hiddeneye(self): |
| 864 | self.clear_scr() |
| 865 | os.system("echo \"Modern Phishing Tool With Advanced Functionality And Multiple Tunnelling Services \n\t [!]https://github.com/DarkSecDevelopers/HiddenEye \"|boxes -d boy | lolcat ") |
| 866 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 867 | |
| 868 | self.check_input(choice, self.hiddeneye, ['1', '2', '99']) |
| 869 | |
| 870 | if choice == "1": |
| 871 | os.system("sudo git clone https://github.com/DarkSecDevelopers/HiddenEye.git ;sudo chmod 777 HiddenEye") |
| 872 | os.system("cd HiddenEye;sudo pip3 install -r requirements.txt;sudo pip3 install requests;pip3 install pyngrok") |
| 873 | self.hiddeneye() |
| 874 | |
| 875 | if choice == "2": |
| 876 | os.system("cd HiddenEye;sudo python3 HiddenEye.py") |
| 877 | self.hiddeneye() |
| 878 | |
| 879 | if choice == "99": |
| 880 | self.phishattack() |
| 881 | |
| 882 | def evilginx(self): |
| 883 | self.clear_scr() |
nothing calls this directly
no test coverage detected