└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # Full-installation-of-HiddenEye-in-Termux 2 | HiddenEye is a pishing website. 3 | 4 | Steps to set-up install HniddenEye in Termux(Only For Android Version) 5 | 6 | Disclaimer:- 7 | All the steps given for only Educational Purposes. 8 | I am not responsible for any cyber crime and I don't promote any type of Crime. 9 | Pishing attack is illegal. 10 | 11 | 12 | BlackArch official repository 13 | sudo pacman -S hidden-eye 14 | to run just use 15 | 16 | sudo hiddeneye 17 | CLONE 18 | git clone https://github.com/DarkSecDevelopers/HiddenEye.git 19 | RUNNING (In Linux) 20 | chmod 777 HiddenEye 21 | 22 | sudo apt install python3-pip 23 | 24 | cd HiddenEye 25 | 26 | sudo pip3 install -r requirements.txt 27 | 28 | sudo pip3 install requests 29 | 30 | sudo pip3 install pyngrok 31 | 32 | python3 HiddenEye.py 33 | 34 | OR 35 | 36 | ./HiddenEye.py 37 | 38 | RUNNING (Arch Linux or Manjaro) 39 | chmod 777 HiddenEye 40 | 41 | sudo pacman -Syu 42 | 43 | sudo pacman -S python-pip, 44 | 45 | cd HiddenEye 46 | 47 | sudo pip3 install -r requirements.txt 48 | 49 | sudo pip3 install pyngrok 50 | 51 | sudo python3 HiddenEye.py 52 | 53 | OR 54 | 55 | sudo ./HiddenEye.py 56 | 57 | FOR ANDROID USERS 58 | 1) INSTALLING IN (USERLAND APP) 59 | Install userland app from playstore. 60 | 61 | Set up app and install kali from app. Set ssh username (anyname) and password. 62 | 63 | When kali will run it'll ask for password, type the ssh password. Then do su. After that kali will run on your device without root and do, apt update. For more info read here (https://null-byte.wonderhowto.com/how-to/android-for-hackers-turn-android-phone-into-hacking-device-without-root-0189649/) 64 | 65 | sudo apt install python3 python3-pip unzip php git 66 | 67 | git clone https://github.com/DarkSecDevelopers/HiddenEye.git 68 | 69 | chmod 777 HiddenEye 70 | cd HiddenEye 71 | 72 | pip3 install -r requirements.txt && pip3 install requests 73 | 74 | python3 HiddenEye.py 75 | 2) INSTALLING IN (TERMUX APP) 76 | First install { Termux } from Playstore. 77 | 78 | After opening Follow below commands One by one 79 | 80 | pkg install git python php curl openssh grep 81 | 82 | git clone -b Termux-Support-Branch https://github.com/DarkSecDevelopers/HiddenEye.git 83 | chmod 777 HiddenEye 84 | pip install requests 85 | cd HiddenEye 86 | python HiddenEye.py 87 | 88 | or 89 | 90 | ./HiddenEye.py 91 | 92 | ONE LINE COMMAND TO INSTALL IN TERMUX(ANDROID). Just copy/paste this single command and hit Enter .. ALL DONE 93 | First install { Termux } from Playstore. 94 | 95 | After opening Copy and run this Single Command. 96 | 97 | pkg install git python php curl openssh grep && git clone -b Termux-Support-Branch https://github.com/DarkSecDevelopers/HiddenEye.git && chmod 777 HiddenEye && cd HiddenEye && pip install -r requirements.txt && pip install requests && python HiddenEye.py 98 | 99 | 100 | Enjoy the project. 101 | --------------------------------------------------------------------------------