From c168e20fdbc180bb21ecef140344e4e6fd622345 Mon Sep 17 00:00:00 2001 From: sTiKyt Date: Mon, 11 May 2020 12:12:06 +0300 Subject: [PATCH] Added Copyright comments to all source files, as suggested by GPL 3.0 --- Defs/ActionManager/Server/server_menu.py | 8 ++++++++ Defs/ActionManager/Server/server_runner.py | 8 ++++++++ Defs/ActionManager/main_runner.py | 8 ++++++++ Defs/ActionManager/simple_informant.py | 7 +++++++ Defs/Checks.py | 8 ++++++++ Defs/FeatureManager/EmailManager/EmailConfigDefault.py | 8 ++++++++ Defs/FeatureManager/EmailManager/SendEmail.py | 8 ++++++-- Defs/FeatureManager/EmailManager/email_prompt.py | 8 ++++++++ Defs/FeatureManager/cloudflare.py | 8 ++++++++ Defs/FeatureManager/keylogger.py | 8 ++++++++ Defs/ImportManager/unsorted_will_be_replaced.py | 8 ++++++++ .../lang_action_manager/lang_main_runner.py | 8 ++++++++ .../lang_action_manager/lang_server/lang_server_menu.py | 6 ++++++ .../lang_server/lang_server_runner.py | 6 ++++++ .../lang_action_manager/lang_simple_informant.py | 9 +++++++++ Defs/LocalizationManager/lang_global_usage.py | 8 ++++++++ Defs/LocalizationManager/lang_hiddeneye.py | 8 ++++++++ Defs/LocalizationManager/localization.py | 9 +++++++++ Defs/ThemeManager/theme.py | 8 ++++++++ HiddenEye.py | 7 +++++-- 20 files changed, 152 insertions(+), 4 deletions(-) diff --git a/Defs/ActionManager/Server/server_menu.py b/Defs/ActionManager/Server/server_menu.py index 23358ee..82829cb 100644 --- a/Defs/ActionManager/Server/server_menu.py +++ b/Defs/ActionManager/Server/server_menu.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from Defs.ImportManager.unsorted_will_be_replaced import run_command import Defs.ThemeManager.theme as theme import Defs.ActionManager.Server.server_runner as server_runner diff --git a/Defs/ActionManager/Server/server_runner.py b/Defs/ActionManager/Server/server_runner.py index 50d2e01..7fb8c18 100644 --- a/Defs/ActionManager/Server/server_runner.py +++ b/Defs/ActionManager/Server/server_runner.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from Defs.ImportManager.unsorted_will_be_replaced import run_command, run_background_command, wait, ngrok, requests, regular_expression, check_output, CalledProcessError, chdir, chmod, DEVNULL, PIPE import Defs.ThemeManager.theme as theme import Defs.ActionManager.Server.server_menu as server_menu diff --git a/Defs/ActionManager/main_runner.py b/Defs/ActionManager/main_runner.py index 76c40e4..e20532c 100644 --- a/Defs/ActionManager/main_runner.py +++ b/Defs/ActionManager/main_runner.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from Defs.ImportManager.unsorted_will_be_replaced import run_command, webpage_set, wait, path, rmtree, pathlib_Path, copyfile, chmod, mkdir, remove import Defs.ThemeManager.theme as theme import Defs.ActionManager.simple_informant as simple_informant diff --git a/Defs/ActionManager/simple_informant.py b/Defs/ActionManager/simple_informant.py index 468791f..4da063c 100644 --- a/Defs/ActionManager/simple_informant.py +++ b/Defs/ActionManager/simple_informant.py @@ -1,3 +1,10 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + from Defs.ImportManager.unsorted_will_be_replaced import run_command, wait, chmod, stat, pathlib_Path, copyfile, socket import Defs.ThemeManager.theme as theme import Defs.FeatureManager.EmailManager.email_prompt as email_prompt diff --git a/Defs/Checks.py b/Defs/Checks.py index 54fd07a..5427d4b 100644 --- a/Defs/Checks.py +++ b/Defs/Checks.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + # DEPRECATED FILE # # DONT WRITE ANY NEW CODE HERE # # NEVER # diff --git a/Defs/FeatureManager/EmailManager/EmailConfigDefault.py b/Defs/FeatureManager/EmailManager/EmailConfigDefault.py index f09a5cb..957080d 100644 --- a/Defs/FeatureManager/EmailManager/EmailConfigDefault.py +++ b/Defs/FeatureManager/EmailManager/EmailConfigDefault.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + gmail_account = "GMAILACCOUNT" gmail_password = "GMAILPASSWORD" recipient_email = "RECIPIENTEMAIL" diff --git a/Defs/FeatureManager/EmailManager/SendEmail.py b/Defs/FeatureManager/EmailManager/SendEmail.py index 0c83093..e8a0c5e 100644 --- a/Defs/FeatureManager/EmailManager/SendEmail.py +++ b/Defs/FeatureManager/EmailManager/SendEmail.py @@ -1,5 +1,9 @@ -#!/usr/bin/env python -# encoding: utf-8 +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# import os import base64 diff --git a/Defs/FeatureManager/EmailManager/email_prompt.py b/Defs/FeatureManager/EmailManager/email_prompt.py index c3b7476..800def0 100644 --- a/Defs/FeatureManager/EmailManager/email_prompt.py +++ b/Defs/FeatureManager/EmailManager/email_prompt.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from Defs.ImportManager.unsorted_will_be_replaced import run_command, wait, path, system, getpass, base64, copyfile import Defs.ThemeManager.theme as theme import Defs.ActionManager.simple_informant as simple_informant diff --git a/Defs/FeatureManager/cloudflare.py b/Defs/FeatureManager/cloudflare.py index ee4e30e..c1a5414 100644 --- a/Defs/FeatureManager/cloudflare.py +++ b/Defs/FeatureManager/cloudflare.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from Defs.ImportManager.unsorted_will_be_replaced import wait, run_command, pathlib_Path, replace, copyfile, chmod import Defs.ThemeManager.theme as theme diff --git a/Defs/FeatureManager/keylogger.py b/Defs/FeatureManager/keylogger.py index 7f36707..839b6e5 100644 --- a/Defs/FeatureManager/keylogger.py +++ b/Defs/FeatureManager/keylogger.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from Defs.ImportManager.unsorted_will_be_replaced import wait, run_command, path import Defs.ThemeManager.theme as theme diff --git a/Defs/ImportManager/unsorted_will_be_replaced.py b/Defs/ImportManager/unsorted_will_be_replaced.py index e818ed7..42103aa 100644 --- a/Defs/ImportManager/unsorted_will_be_replaced.py +++ b/Defs/ImportManager/unsorted_will_be_replaced.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + from subprocess import call as run_command,Popen as run_background_command, check_output, CalledProcessError, DEVNULL, PIPE from distutils.dir_util import copy_tree as webpage_set from time import sleep as wait diff --git a/Defs/LocalizationManager/lang_action_manager/lang_main_runner.py b/Defs/LocalizationManager/lang_action_manager/lang_main_runner.py index 6133ffa..8664d87 100644 --- a/Defs/LocalizationManager/lang_action_manager/lang_main_runner.py +++ b/Defs/LocalizationManager/lang_action_manager/lang_main_runner.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + #Contains all ActionManager/main_runner.py translation strings import Defs.ThemeManager.theme as theme from Defs.LocalizationManager.localization import _ diff --git a/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_menu.py b/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_menu.py index e69de29..9289e2b 100644 --- a/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_menu.py +++ b/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_menu.py @@ -0,0 +1,6 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# \ No newline at end of file diff --git a/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_runner.py b/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_runner.py index e69de29..9289e2b 100644 --- a/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_runner.py +++ b/Defs/LocalizationManager/lang_action_manager/lang_server/lang_server_runner.py @@ -0,0 +1,6 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# \ No newline at end of file diff --git a/Defs/LocalizationManager/lang_action_manager/lang_simple_informant.py b/Defs/LocalizationManager/lang_action_manager/lang_simple_informant.py index d42ab4c..7d2b934 100644 --- a/Defs/LocalizationManager/lang_action_manager/lang_simple_informant.py +++ b/Defs/LocalizationManager/lang_action_manager/lang_simple_informant.py @@ -1,3 +1,12 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + + import Defs.ThemeManager.theme as theme from Defs.LocalizationManager.localization import _ diff --git a/Defs/LocalizationManager/lang_global_usage.py b/Defs/LocalizationManager/lang_global_usage.py index 755910a..776b1bb 100644 --- a/Defs/LocalizationManager/lang_global_usage.py +++ b/Defs/LocalizationManager/lang_global_usage.py @@ -1,3 +1,11 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + import Defs.ThemeManager.theme as theme default_palette = theme.default_palette diff --git a/Defs/LocalizationManager/lang_hiddeneye.py b/Defs/LocalizationManager/lang_hiddeneye.py index a85d2ce..57274a7 100644 --- a/Defs/LocalizationManager/lang_hiddeneye.py +++ b/Defs/LocalizationManager/lang_hiddeneye.py @@ -1 +1,9 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + #Contains all HiddenEye.py strings \ No newline at end of file diff --git a/Defs/LocalizationManager/localization.py b/Defs/LocalizationManager/localization.py index cb69d67..2afd307 100644 --- a/Defs/LocalizationManager/localization.py +++ b/Defs/LocalizationManager/localization.py @@ -1,3 +1,12 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + + import gettext gettext.bindtextdomain('HiddenEye', 'locale') gettext.textdomain('HiddenEye') diff --git a/Defs/ThemeManager/theme.py b/Defs/ThemeManager/theme.py index fa40e48..443c5e8 100644 --- a/Defs/ThemeManager/theme.py +++ b/Defs/ThemeManager/theme.py @@ -1 +1,9 @@ +# +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. +# + + default_palette = ['\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'] #Will be replaced later, TODO \ No newline at end of file diff --git a/HiddenEye.py b/HiddenEye.py index c99c9ca..f79bdc3 100755 --- a/HiddenEye.py +++ b/HiddenEye.py @@ -1,8 +1,11 @@ -#!/usr/bin/python3 # -# HiddenEye by https://dark-sec-official.com +# HiddenEye Copyright (C) 2020 DarkSec https://dark-sec-official.com +# This program comes with ABSOLUTELY NO WARRANTY; for details read LICENSE. +# This is free software, and you are welcome to redistribute it +# under certain conditions; you can read LICENSE for details. # + from Defs.Checks import * from os import system, environ import Defs.ActionManager.main_runner as main_runner