-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.py
More file actions
54 lines (37 loc) · 1.42 KB
/
Copy pathmain.py
File metadata and controls
54 lines (37 loc) · 1.42 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
51
52
53
54
#!/usr/bin/env python
import os, time, socket, signal, sys, subprocess, shutil
from modules import *
netcheck()
clear()
def start(browser):
os.system("sudo service tor start")
os.system("proxychains "+browser)
def check(browsername,brow):
chx = os.path.isfile("/bin/"+brow)
if chx == True:
pass
elif chx == False:
print(Kirmizi+browsername+" Not Found")
exit()
banner = Mavi+"""
.▄▄ · ▄▄▄▄▄▄▄▄ ▄▄▄· ▐ ▄ ▄▄ • ▄▄▄ .▄▄▄
▐█ ▀. •██ ▀▄ █·▐█ ▀█ •█▌▐█▐█ ▀ ▪▀▄.▀·▀▄ █·
▄▀▀▀█▄ ▐█.▪▐▀▀▄ ▄█▀▀█ ▐█▐▐▌▄█ ▀█▄▐▀▀▪▄▐▀▀▄
▐█▄▪▐█ ▐█▌·▐█•█▌▐█ ▪▐▌██▐█▌▐█▄▪▐█▐█▄▄▌▐█•█▌
▀▀▀▀ ▀▀▀ .▀ ▀ ▀ ▀ ▀▀ █▪·▀▀▀▀ ▀▀▀ .▀ ▀
[1]Firefox [2]Google
"""
print(banner)
selection = input(Beyaz+"Which browser should we use? ===>")
if selection == "1":
check("Firefox","firefox")
start("firefox")
elif selection == "2":
check("Chrome","google-chrome")
start("google-chrome")
def keyboardinterrupt(sig, frame):
print(Yesil+'Thanks for using my tool')
os.system("service tor stop")
os.system("exit")
signal.signal(signal.SIGINT, keyboardinterrupt)
signal.pause()