-
Notifications
You must be signed in to change notification settings - Fork 42
/
tor_services.py
26 lines (23 loc) · 984 Bytes
/
tor_services.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
from proxy import Proxy
from proxy.Color import *
torBanner = '''
%s%s----------------------------------------------------------------------------
%s%s _____ ___ ___ _
|_ _|__ _ _ | _ \_ _ _____ ___ _ / __| ___ _ ___ _(_)__ ___ ___
| |/ _ \ '_| | _/ '_/ _ \ \ / || | \__ \/ -_) '_\ V / / _/ -_|_-<
%s%s |_|\___/_| |_| |_| \___/_\_\\_, | |___/\___|_| \_/|_\__\___/__/
|__/
%s%s:-%s%s by Nasir Khan (r0ot h3x49)
%s%s----------------------------------------------------------------------------
''' % (fg, sb, fc, sb, fg, sb, fw, sb, fg, sb, fg, sb)
class TorServiceSetup(object):
"""class to setup and start tor sevices"""
def StartService(self):
TorProxy = Proxy()
print(torBanner)
TorProxy.ConfigureTor
def main():
Service = TorServiceSetup()
Service.StartService()
if __name__ == '__main__':
main()