├── Phish.py ├── README.md └── requirements.sh /Phish.py: -------------------------------------------------------------------------------- 1 | def phish () : 2 | import os 3 | os.system("clear && toilet -f big 'Phishing Tools' | lolcat ") 4 | import os 5 | os.system("cd /$HOME && git clone https://github.com/samyoyo/weeman") 6 | import os 7 | os.system("cd /$HOME && git clone https://github.com/UndeadSec/SocialFish.git") 8 | import os 9 | os.system("cd /$HOME && git clone https://github.com/thelinuxchoice/blackeye") 10 | import os 11 | os.system("cd /$HOME && git clone https://github.com/thelinuxchoice/shellphish") 12 | import os 13 | os.system("cd /$HOME && git clone https://github.com/Cabdulahi/pish") 14 | import os 15 | os.system("cd /$HOME && git clone -b Termux-Support-Branch https://github.com/DarkSecDevelopers/HiddenEye.git") 16 | import os 17 | os.system("cd /$HOME && git clone https://github.com/UndeadSec/EvilURL.git") 18 | import os 19 | os.system("clear && toilet -f big 'DONE...! ENJOY HACKER ' | lolcat") 20 | phish() -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Phishing 2 | This Tools installs many famous phising tools on your termux By one click It contains SocialFish. Weeman. HiddenEye. ShellFish. Blackeye. Pish. And EvilURL 3 | This Tools installs many famous phising tools on your termux 4 | By one click 5 | It contains 6 | 7 | SocialFish. Weeman. HiddenEye. ShellFish. Blackeye. Pish. And EvilURL 8 | ######## 9 | Installation 10 | ######### 11 | bash requirements.sh 12 | 13 | ________ 14 | Then 15 | _________ 16 | 17 | python Phish.py 18 | -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- 1 | pkg install php openssh python curl openssl-tool nmap ruby perl toilet figlet fish cowsay tree -y && gem install lolcat && pkg upgrade -y && pkg install net-tools hydra -y 2 | 3 | clear 4 | 5 | toilet -f big ' DONE..!' | lolcat --------------------------------------------------------------------------------