HiddenEye-Legacy/instructions.md

177 lines
2.4 KiB
Markdown
Raw Normal View History

2018-12-02 03:16:31 +08:00
## HOW TO INSTALL
### BlackArch official repository
```
sudo pacman -S hidden-eye
```
to run just use
```
sudo hidden-eye
```
2018-12-02 03:16:31 +08:00
### CLONE
```
git clone https://github.com/DarkSecDevelopers/HiddenEye.git
```
### RUNNING (In Linux)
```
2019-08-08 10:04:16 +08:00
chmod 777 HiddenEye
2018-12-02 03:16:31 +08:00
```
```
sudo apt install python3-pip
```
```
2019-08-08 10:04:16 +08:00
cd HiddenEye
2018-12-02 03:16:31 +08:00
```
```
2019-08-08 10:04:16 +08:00
sudo pip3 install -r requirements.txt
2018-12-02 03:16:31 +08:00
```
2020-01-13 13:50:16 +08:00
```
sudo pip3 install requests
```
2018-12-02 03:16:31 +08:00
```
python3 HiddenEye.py
```
OR
2018-12-02 03:16:31 +08:00
```
./HiddenEye.py
```
### RUNNING (Arch Linux or Manjaro)
2018-12-02 03:16:31 +08:00
```
2019-08-08 10:04:16 +08:00
chmod 777 HiddenEye
2018-12-02 03:16:31 +08:00
```
```
sudo pacman -Syu
```
```
sudo pacman -S python-pip
```
```
2019-08-08 10:04:16 +08:00
cd HiddenEye
2018-12-02 03:16:31 +08:00
```
```
2019-08-08 10:04:16 +08:00
sudo pip3 install -r requirements.txt
2018-12-02 03:16:31 +08:00
```
```
sudo python3 HiddenEye.py
2018-12-02 03:16:31 +08:00
```
OR
2018-12-02 03:16:31 +08:00
```
sudo ./HiddenEye.py
2018-12-02 03:16:31 +08:00
```
2019-05-04 20:59:18 +08:00
## FOR ANDROID USERS
2018-12-02 03:16:31 +08:00
2019-05-04 20:59:18 +08:00
### 1) INSTALLING IN (USERLAND APP)
2018-12-02 03:16:31 +08:00
```
2019-04-27 13:27:57 +08:00
Install userland app from playstore.
2018-12-02 03:16:31 +08:00
```
```
2019-04-27 13:27:57 +08:00
Set up app and install kali from app.Set ssh username(anyname) and password.
2018-12-02 03:16:31 +08:00
```
```
2019-04-27 13:31:44 +08:00
When kali will run it'll ask for password type the ssh password.Then do su.After that kali will run on your device wothout 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/)
2018-12-02 03:16:31 +08:00
```
```
2019-10-30 17:36:41 +08:00
sudo apt install python3 python3-pip unzip php git
2018-12-02 03:16:31 +08:00
```
```
2019-04-27 13:35:20 +08:00
git clone https://github.com/DarkSecDevelopers/HiddenEye.git
2018-12-02 03:16:31 +08:00
```
```
2019-08-08 10:04:16 +08:00
chmod 777 HiddenEye
2018-12-02 03:16:31 +08:00
```
```
2019-08-08 10:04:16 +08:00
cd HiddenEye
```
2018-12-02 03:16:31 +08:00
```
2020-01-13 13:50:16 +08:00
pip3 install -r requirements.txt && pip3 install requests
2018-12-02 03:16:31 +08:00
```
2019-08-08 10:04:16 +08:00
2019-04-27 13:35:20 +08:00
```
python3 HiddenEye.py
```
2019-08-08 10:04:16 +08:00
2019-05-04 20:59:18 +08:00
### 2) INSTALLING IN (TERMUX APP)
```
First install { Termux } from Playstore.
```
```
After opening Follow below commands One by one
```
```
pkg install git python php curl openssh grep
```
```
git clone -b Termux-Support-Branch https://github.com/DarkSecDevelopers/HiddenEye.git
```
2019-05-04 20:59:18 +08:00
```
2019-08-08 10:04:16 +08:00
chmod 777 HiddenEye
2019-05-04 20:59:18 +08:00
```
2020-01-13 13:50:16 +08:00
```
pip install requests
```
2019-05-04 20:59:18 +08:00
```
2019-08-08 10:04:16 +08:00
cd HiddenEye
2019-05-04 20:59:18 +08:00
```
```
python HiddenEye.py
or
./HiddenEye.py
```
### ONE LINE COMMAND TO INSTALL IN TERMUX(ANDROID). Just copy/paste this single command and hit Enter .. ALL DONE
```
First install { Termux } from Playstore.
```
```
After opening Copy and run this Single Command.
```
```
2020-01-13 13:50:16 +08:00
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
2019-05-04 20:59:18 +08:00
```