-
Notifications
You must be signed in to change notification settings - Fork 0
/
dark.py
42 lines (34 loc) · 1018 Bytes
/
dark.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
# -*- coding: utf-8 -*-
import os ,time
bannar = '''\033[94m
____ __
/ __ \____ ______/ /__
/ / / / __ `/ ___/ //_/
/ /_/ / /_/ / / / ,<
/_____/\__,_/_/ /_/|_|
'''
banner2 = '''\033[95m
_ __ __
/ | / /___ __________ / /__
/ |/ / __ `/ ___/ __ \/ //_/
/ /| / /_/ / / / /_/ / ,<
/_/ |_/\__, /_/ \____/_/|_|
/____/
\033[96m [Created By Team Dark Hunter 141]
\033[92mUsing Ngrok Without Mobile Hotspot
'''
os.system ('clear')
print bannar
print banner2
print ('\033[96m [✓] Downloading Ngrok File.......')
time.sleep (2)
print ''
os.system ('unzip Dark-Ngrok.zip')
os.system ('chmod 777 ngrok')
os.system ('cp ngrok $PREFIX/bin/')
os.system ('chmod +x $PREFIX/bin/ngrok')
print '\033[92m [✓] Ngrok Setup Done '
print ''
print ('\033[93m [$] Restart your termux and type [\033[91mEX : ngrok http 8080\033[93m]: ngrok ......')
print ''
os.system ('exit')