HiddenEye-Legacy/instructions.md

112 lines
1.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)
```
cd HiddenEye
```
```
sudo apt install python3-pip
```
```
sudo pip3 install -r requirements.txt
```
```
chmod 777 HiddenEye.py
```
```
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
```
cd HiddenEye
```
```
sudo pacman -Syu
```
```
sudo pacman -S python-pip
```
```
sudo pip3 install -r requirements.txt
```
```
chmod 777 HiddenEye.py
```
```
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-04-27 13:27:57 +08:00
### RUNNING (For Android users)
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-04-27 13:35:20 +08:00
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
```
```
cd HiddenEye
```
```
chmod 777 HiddenEye.py
```
```
2019-04-27 13:35:20 +08:00
pip3 install -r requirements.txt
2018-12-02 03:16:31 +08:00
```
2019-04-27 13:35:20 +08:00
```
python3 HiddenEye.py
```