From 0d5858b916f28d2e47a2289b47f88ce72ec440be Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 13 Aug 2020 11:44:34 +0000 Subject: [PATCH 1/4] Restyled by autopep8 --- Defs/FeatureManager/__init__.py | 1 - __init__.py | 1 - 2 files changed, 2 deletions(-) diff --git a/Defs/FeatureManager/__init__.py b/Defs/FeatureManager/__init__.py index 8b13789..e69de29 100644 --- a/Defs/FeatureManager/__init__.py +++ b/Defs/FeatureManager/__init__.py @@ -1 +0,0 @@ - diff --git a/__init__.py b/__init__.py index 8b13789..e69de29 100644 --- a/__init__.py +++ b/__init__.py @@ -1 +0,0 @@ - From e4d3957f3005d44e7fbc99e9fad9fba9eaae6762 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 13 Aug 2020 11:44:35 +0000 Subject: [PATCH 2/4] Restyled by isort --- Defs/ActionManager/Server/server_runner.py | 19 ++++--------------- Defs/ActionManager/main_runner.py | 14 +++++--------- Defs/ActionManager/simple_informant.py | 14 +++++--------- .../EmailManager/email_prompt.py | 11 ++++------- Defs/FeatureManager/cloudflare.py | 10 ++++------ Defs/FeatureManager/keylogger.py | 5 ++--- .../unsorted_will_be_replaced.py | 18 ++++-------------- 7 files changed, 28 insertions(+), 63 deletions(-) diff --git a/Defs/ActionManager/Server/server_runner.py b/Defs/ActionManager/Server/server_runner.py index 6225f49..7540d2d 100644 --- a/Defs/ActionManager/Server/server_runner.py +++ b/Defs/ActionManager/Server/server_runner.py @@ -10,21 +10,10 @@ import Defs.LocalizationManager.lang_action_manager.lang_server.lang_server_runn import Defs.LocalizationManager.lang_global_usage as global_localization import Defs.ThemeManager.theme as theme from Defs.ActionManager import simple_informant -from Defs.ImportManager.unsorted_will_be_replaced import BytesIO -from Defs.ImportManager.unsorted_will_be_replaced import CalledProcessError -from Defs.ImportManager.unsorted_will_be_replaced import check_output -from Defs.ImportManager.unsorted_will_be_replaced import chmod -from Defs.ImportManager.unsorted_will_be_replaced import DEVNULL -from Defs.ImportManager.unsorted_will_be_replaced import ngrok -from Defs.ImportManager.unsorted_will_be_replaced import ngrok_conf -from Defs.ImportManager.unsorted_will_be_replaced import path -from Defs.ImportManager.unsorted_will_be_replaced import regular_expression -from Defs.ImportManager.unsorted_will_be_replaced import requests -from Defs.ImportManager.unsorted_will_be_replaced import run_background_command -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import url_request -from Defs.ImportManager.unsorted_will_be_replaced import wait -from Defs.ImportManager.unsorted_will_be_replaced import ZipFile +from Defs.ImportManager.unsorted_will_be_replaced import ( + DEVNULL, BytesIO, CalledProcessError, ZipFile, check_output, chmod, ngrok, + ngrok_conf, path, regular_expression, requests, run_background_command, + run_command, url_request, wait) from Defs.LocalizationManager.helper import print_sorted_as_menu try: diff --git a/Defs/ActionManager/main_runner.py b/Defs/ActionManager/main_runner.py index ab04743..7d7eb88 100644 --- a/Defs/ActionManager/main_runner.py +++ b/Defs/ActionManager/main_runner.py @@ -9,15 +9,11 @@ import time import Defs.ActionManager.simple_informant as simple_informant import Defs.LocalizationManager.lang_action_manager.lang_main_runner as localization import Defs.LocalizationManager.lang_global_usage as global_localization -from Defs.ImportManager.unsorted_will_be_replaced import copyfile -from Defs.ImportManager.unsorted_will_be_replaced import mkdir -from Defs.ImportManager.unsorted_will_be_replaced import path -from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path -from Defs.ImportManager.unsorted_will_be_replaced import remove -from Defs.ImportManager.unsorted_will_be_replaced import rmtree -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import wait -from Defs.ImportManager.unsorted_will_be_replaced import webpage_set +from Defs.ImportManager.unsorted_will_be_replaced import (copyfile, mkdir, + path, pathlib_Path, + remove, rmtree, + run_command, wait, + webpage_set) from Defs.LocalizationManager.helper import print_sorted_as_menu module_loading_message = simple_informant.module_loading_message diff --git a/Defs/ActionManager/simple_informant.py b/Defs/ActionManager/simple_informant.py index 81c2aea..ee9e3c5 100644 --- a/Defs/ActionManager/simple_informant.py +++ b/Defs/ActionManager/simple_informant.py @@ -9,15 +9,11 @@ import Defs.FeatureManager.EmailManager.email_prompt as email_prompt import Defs.LocalizationManager.lang_action_manager.lang_simple_informant as localization import Defs.LocalizationManager.lang_global_usage as global_localization import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import chmod -from Defs.ImportManager.unsorted_will_be_replaced import copyfile -from Defs.ImportManager.unsorted_will_be_replaced import getuid -from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path -from Defs.ImportManager.unsorted_will_be_replaced import platform -from Defs.ImportManager.unsorted_will_be_replaced import requests -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import stat -from Defs.ImportManager.unsorted_will_be_replaced import try_to_run_command +from Defs.ImportManager.unsorted_will_be_replaced import (chmod, copyfile, + getuid, pathlib_Path, + platform, requests, + run_command, stat, + try_to_run_command) default_palette = theme.default_palette diff --git a/Defs/FeatureManager/EmailManager/email_prompt.py b/Defs/FeatureManager/EmailManager/email_prompt.py index f1353b5..504cfbc 100644 --- a/Defs/FeatureManager/EmailManager/email_prompt.py +++ b/Defs/FeatureManager/EmailManager/email_prompt.py @@ -5,13 +5,10 @@ # under certain conditions; you can read LICENSE for details. # import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import base64 -from Defs.ImportManager.unsorted_will_be_replaced import copyfile -from Defs.ImportManager.unsorted_will_be_replaced import getpass -from Defs.ImportManager.unsorted_will_be_replaced import path -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import system -from Defs.ImportManager.unsorted_will_be_replaced import wait +from Defs.ImportManager.unsorted_will_be_replaced import (base64, copyfile, + getpass, path, + run_command, system, + wait) default_palette = theme.default_palette diff --git a/Defs/FeatureManager/cloudflare.py b/Defs/FeatureManager/cloudflare.py index 7e96efc..0313a46 100644 --- a/Defs/FeatureManager/cloudflare.py +++ b/Defs/FeatureManager/cloudflare.py @@ -5,12 +5,10 @@ # under certain conditions; you can read LICENSE for details. # import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import chmod -from Defs.ImportManager.unsorted_will_be_replaced import copyfile -from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path -from Defs.ImportManager.unsorted_will_be_replaced import replace -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import wait +from Defs.ImportManager.unsorted_will_be_replaced import (chmod, copyfile, + pathlib_Path, + replace, run_command, + wait) default_palette = theme.default_palette diff --git a/Defs/FeatureManager/keylogger.py b/Defs/FeatureManager/keylogger.py index c572c51..45617e1 100644 --- a/Defs/FeatureManager/keylogger.py +++ b/Defs/FeatureManager/keylogger.py @@ -5,9 +5,8 @@ # under certain conditions; you can read LICENSE for details. # import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import path -from Defs.ImportManager.unsorted_will_be_replaced import run_command -from Defs.ImportManager.unsorted_will_be_replaced import wait +from Defs.ImportManager.unsorted_will_be_replaced import (path, run_command, + wait) default_palette = theme.default_palette diff --git a/Defs/ImportManager/unsorted_will_be_replaced.py b/Defs/ImportManager/unsorted_will_be_replaced.py index 81f712e..8870cc1 100644 --- a/Defs/ImportManager/unsorted_will_be_replaced.py +++ b/Defs/ImportManager/unsorted_will_be_replaced.py @@ -12,24 +12,14 @@ import socket import stat from distutils.dir_util import copy_tree as webpage_set from io import BytesIO -from os import chdir -from os import chmod -from os import getuid -from os import mkdir -from os import path -from os import remove -from os import replace -from os import system +from os import chdir, chmod, getuid, mkdir, path, remove, replace, system from pathlib import Path as pathlib_Path -from shutil import copyfile -from shutil import rmtree +from shutil import copyfile, rmtree +from subprocess import DEVNULL, PIPE, CalledProcessError +from subprocess import Popen as run_background_command from subprocess import call as run_command -from subprocess import CalledProcessError from subprocess import check_call as try_to_run_command from subprocess import check_output -from subprocess import DEVNULL -from subprocess import PIPE -from subprocess import Popen as run_background_command from time import sleep as wait from urllib import request as url_request from zipfile import ZipFile From 596751f47a9f790db65fcfb21f2f72017dddba23 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 13 Aug 2020 11:44:36 +0000 Subject: [PATCH 3/4] Restyled by reorder-python-imports --- Defs/ActionManager/Server/server_runner.py | 19 +++++++++++++++---- Defs/ActionManager/main_runner.py | 14 +++++++++----- Defs/ActionManager/simple_informant.py | 14 +++++++++----- .../EmailManager/email_prompt.py | 11 +++++++---- Defs/FeatureManager/cloudflare.py | 10 ++++++---- Defs/FeatureManager/keylogger.py | 5 +++-- .../unsorted_will_be_replaced.py | 18 ++++++++++++++---- 7 files changed, 63 insertions(+), 28 deletions(-) diff --git a/Defs/ActionManager/Server/server_runner.py b/Defs/ActionManager/Server/server_runner.py index 7540d2d..6225f49 100644 --- a/Defs/ActionManager/Server/server_runner.py +++ b/Defs/ActionManager/Server/server_runner.py @@ -10,10 +10,21 @@ import Defs.LocalizationManager.lang_action_manager.lang_server.lang_server_runn import Defs.LocalizationManager.lang_global_usage as global_localization import Defs.ThemeManager.theme as theme from Defs.ActionManager import simple_informant -from Defs.ImportManager.unsorted_will_be_replaced import ( - DEVNULL, BytesIO, CalledProcessError, ZipFile, check_output, chmod, ngrok, - ngrok_conf, path, regular_expression, requests, run_background_command, - run_command, url_request, wait) +from Defs.ImportManager.unsorted_will_be_replaced import BytesIO +from Defs.ImportManager.unsorted_will_be_replaced import CalledProcessError +from Defs.ImportManager.unsorted_will_be_replaced import check_output +from Defs.ImportManager.unsorted_will_be_replaced import chmod +from Defs.ImportManager.unsorted_will_be_replaced import DEVNULL +from Defs.ImportManager.unsorted_will_be_replaced import ngrok +from Defs.ImportManager.unsorted_will_be_replaced import ngrok_conf +from Defs.ImportManager.unsorted_will_be_replaced import path +from Defs.ImportManager.unsorted_will_be_replaced import regular_expression +from Defs.ImportManager.unsorted_will_be_replaced import requests +from Defs.ImportManager.unsorted_will_be_replaced import run_background_command +from Defs.ImportManager.unsorted_will_be_replaced import run_command +from Defs.ImportManager.unsorted_will_be_replaced import url_request +from Defs.ImportManager.unsorted_will_be_replaced import wait +from Defs.ImportManager.unsorted_will_be_replaced import ZipFile from Defs.LocalizationManager.helper import print_sorted_as_menu try: diff --git a/Defs/ActionManager/main_runner.py b/Defs/ActionManager/main_runner.py index 7d7eb88..ab04743 100644 --- a/Defs/ActionManager/main_runner.py +++ b/Defs/ActionManager/main_runner.py @@ -9,11 +9,15 @@ import time import Defs.ActionManager.simple_informant as simple_informant import Defs.LocalizationManager.lang_action_manager.lang_main_runner as localization import Defs.LocalizationManager.lang_global_usage as global_localization -from Defs.ImportManager.unsorted_will_be_replaced import (copyfile, mkdir, - path, pathlib_Path, - remove, rmtree, - run_command, wait, - webpage_set) +from Defs.ImportManager.unsorted_will_be_replaced import copyfile +from Defs.ImportManager.unsorted_will_be_replaced import mkdir +from Defs.ImportManager.unsorted_will_be_replaced import path +from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path +from Defs.ImportManager.unsorted_will_be_replaced import remove +from Defs.ImportManager.unsorted_will_be_replaced import rmtree +from Defs.ImportManager.unsorted_will_be_replaced import run_command +from Defs.ImportManager.unsorted_will_be_replaced import wait +from Defs.ImportManager.unsorted_will_be_replaced import webpage_set from Defs.LocalizationManager.helper import print_sorted_as_menu module_loading_message = simple_informant.module_loading_message diff --git a/Defs/ActionManager/simple_informant.py b/Defs/ActionManager/simple_informant.py index ee9e3c5..81c2aea 100644 --- a/Defs/ActionManager/simple_informant.py +++ b/Defs/ActionManager/simple_informant.py @@ -9,11 +9,15 @@ import Defs.FeatureManager.EmailManager.email_prompt as email_prompt import Defs.LocalizationManager.lang_action_manager.lang_simple_informant as localization import Defs.LocalizationManager.lang_global_usage as global_localization import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import (chmod, copyfile, - getuid, pathlib_Path, - platform, requests, - run_command, stat, - try_to_run_command) +from Defs.ImportManager.unsorted_will_be_replaced import chmod +from Defs.ImportManager.unsorted_will_be_replaced import copyfile +from Defs.ImportManager.unsorted_will_be_replaced import getuid +from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path +from Defs.ImportManager.unsorted_will_be_replaced import platform +from Defs.ImportManager.unsorted_will_be_replaced import requests +from Defs.ImportManager.unsorted_will_be_replaced import run_command +from Defs.ImportManager.unsorted_will_be_replaced import stat +from Defs.ImportManager.unsorted_will_be_replaced import try_to_run_command default_palette = theme.default_palette diff --git a/Defs/FeatureManager/EmailManager/email_prompt.py b/Defs/FeatureManager/EmailManager/email_prompt.py index 504cfbc..f1353b5 100644 --- a/Defs/FeatureManager/EmailManager/email_prompt.py +++ b/Defs/FeatureManager/EmailManager/email_prompt.py @@ -5,10 +5,13 @@ # under certain conditions; you can read LICENSE for details. # import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import (base64, copyfile, - getpass, path, - run_command, system, - wait) +from Defs.ImportManager.unsorted_will_be_replaced import base64 +from Defs.ImportManager.unsorted_will_be_replaced import copyfile +from Defs.ImportManager.unsorted_will_be_replaced import getpass +from Defs.ImportManager.unsorted_will_be_replaced import path +from Defs.ImportManager.unsorted_will_be_replaced import run_command +from Defs.ImportManager.unsorted_will_be_replaced import system +from Defs.ImportManager.unsorted_will_be_replaced import wait default_palette = theme.default_palette diff --git a/Defs/FeatureManager/cloudflare.py b/Defs/FeatureManager/cloudflare.py index 0313a46..7e96efc 100644 --- a/Defs/FeatureManager/cloudflare.py +++ b/Defs/FeatureManager/cloudflare.py @@ -5,10 +5,12 @@ # under certain conditions; you can read LICENSE for details. # import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import (chmod, copyfile, - pathlib_Path, - replace, run_command, - wait) +from Defs.ImportManager.unsorted_will_be_replaced import chmod +from Defs.ImportManager.unsorted_will_be_replaced import copyfile +from Defs.ImportManager.unsorted_will_be_replaced import pathlib_Path +from Defs.ImportManager.unsorted_will_be_replaced import replace +from Defs.ImportManager.unsorted_will_be_replaced import run_command +from Defs.ImportManager.unsorted_will_be_replaced import wait default_palette = theme.default_palette diff --git a/Defs/FeatureManager/keylogger.py b/Defs/FeatureManager/keylogger.py index 45617e1..c572c51 100644 --- a/Defs/FeatureManager/keylogger.py +++ b/Defs/FeatureManager/keylogger.py @@ -5,8 +5,9 @@ # under certain conditions; you can read LICENSE for details. # import Defs.ThemeManager.theme as theme -from Defs.ImportManager.unsorted_will_be_replaced import (path, run_command, - wait) +from Defs.ImportManager.unsorted_will_be_replaced import path +from Defs.ImportManager.unsorted_will_be_replaced import run_command +from Defs.ImportManager.unsorted_will_be_replaced import wait default_palette = theme.default_palette diff --git a/Defs/ImportManager/unsorted_will_be_replaced.py b/Defs/ImportManager/unsorted_will_be_replaced.py index 8870cc1..81f712e 100644 --- a/Defs/ImportManager/unsorted_will_be_replaced.py +++ b/Defs/ImportManager/unsorted_will_be_replaced.py @@ -12,14 +12,24 @@ import socket import stat from distutils.dir_util import copy_tree as webpage_set from io import BytesIO -from os import chdir, chmod, getuid, mkdir, path, remove, replace, system +from os import chdir +from os import chmod +from os import getuid +from os import mkdir +from os import path +from os import remove +from os import replace +from os import system from pathlib import Path as pathlib_Path -from shutil import copyfile, rmtree -from subprocess import DEVNULL, PIPE, CalledProcessError -from subprocess import Popen as run_background_command +from shutil import copyfile +from shutil import rmtree from subprocess import call as run_command +from subprocess import CalledProcessError from subprocess import check_call as try_to_run_command from subprocess import check_output +from subprocess import DEVNULL +from subprocess import PIPE +from subprocess import Popen as run_background_command from time import sleep as wait from urllib import request as url_request from zipfile import ZipFile From 292cc9f5c4549fefe796c87b826b31340db466a1 Mon Sep 17 00:00:00 2001 From: "Restyled.io" Date: Thu, 13 Aug 2020 11:44:37 +0000 Subject: [PATCH 4/4] Restyled by whitespace --- Defs/FeatureManager/__init__.py | 1 + README.md | 16 ++++++++-------- __init__.py | 1 + 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/Defs/FeatureManager/__init__.py b/Defs/FeatureManager/__init__.py index e69de29..8b13789 100644 --- a/Defs/FeatureManager/__init__.py +++ b/Defs/FeatureManager/__init__.py @@ -0,0 +1 @@ + diff --git a/README.md b/README.md index b0bf989..f1bd384 100644 --- a/README.md +++ b/README.md @@ -2,19 +2,19 @@

- +

- Modern Phishing Tool With Advanced Functionality + Modern Phishing Tool With Advanced Functionality

- PHISHING | KEYLOGGER | INFORMATION_COLLECTOR | ALL_IN_ONE_TOOL | SOCIALENGINEERING + PHISHING | KEYLOGGER | INFORMATION_COLLECTOR | ALL_IN_ONE_TOOL | SOCIALENGINEERING

- + CodeFactor @@ -45,7 +45,7 @@ The use of the HiddenEye & its resources/phishing-pages is **COMPLETE RESPONSIBI 8) ___________ (WAITING FOR YOU) # AVAILABLE TUNNELLING OPTIONS** -0) LOCALHOST +0) LOCALHOST 1) LOCALXPOSE (https://localxpose.io) 2) SERVEO (https://serveo.net/) 3) NGROK (https://ngrok.com/) @@ -62,7 +62,7 @@ The use of the HiddenEye & its resources/phishing-pages is **COMPLETE RESPONSIBI * Usama ( A Most active Developer) * sTiKyt ( Guy Who recustomized everything ) * UNDEADSEC (For their wonderful repo socialfish which motivated us a lot) -* TheLinuxChoice ( For His Tools Phishing Pages ) +* TheLinuxChoice ( For His Tools Phishing Pages ) * Thewhiteh4t (For Nearyou & Gdrive Location Templates) ### TESTED ON FOLLOWING:- @@ -108,7 +108,7 @@ The use of the HiddenEye & its resources/phishing-pages is **COMPLETE RESPONSIBI **(A) UserLand App** - You Have to Download UserLand App. [Click Here](https://play.google.com/store/apps/details?id=tech.ula) To Download it. -- To read more how to set up userland app Read HERE

+- To read more how to set up userland app Read HERE

**(B) Termux App** - You Have to Download Termux App. [Click Here](https://play.google.com/store/apps/details?id=com.termux) To Download it. @@ -149,7 +149,7 @@ git clone -b Termux-Support-Branch https://github.com/DarkSecDevelopers/HiddenEy - NEAR YOU (By @thewhiteh4t ) - GDRIVE (By @thewhiteh4t) ## [Check This](https://youtu.be/InSdtLhZzk4) Demonstration video to know How (Location) Social-Engineering-Tool Works. - + ## FOR FURTHER INSTALLATION PROCEDURE - [(CHECK INSTRUCTIONS)](https://github.com/DarkSecDevelopers/HiddenEye/wiki/Installation-Instructions) ## BACKUP REPOSITORY AVAILABLE AT GITLAB - [(CHECK HERE)](https://gitlab.com/an0nud4y/HiddenEye) diff --git a/__init__.py b/__init__.py index e69de29..8b13789 100644 --- a/__init__.py +++ b/__init__.py @@ -0,0 +1 @@ +