2022-02-17 05:58:04 +00:00
|
|
|
from stem.control import Controller
|
|
|
|
|
2022-02-18 20:39:46 +00:00
|
|
|
from torfilepaths import control_socket
|
2022-02-17 05:58:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
def get_socks():
|
|
|
|
with Controller.from_socket_file(control_socket) as controller:
|
2022-02-21 21:15:26 +00:00
|
|
|
controller.authenticate()
|
2022-02-17 05:58:04 +00:00
|
|
|
return controller.get_listeners('SOCKS')
|