You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't like frequent requests from my computer to a web services, so I like to transfer the requests through Tor for this kind of tools, I usually use SOCKS5 tor proxy witch gives you socks5://127.0.0.1:9050 by default when you start tor serves.
Describe the solution you'd like
I would like to see a proxy section in the extention config page in ulauncher, or if it's hard to make it more customized you can just put an on/off button to use tor.
How to implement it?
I found thet you are using urllib to get data so you can use this solution for tor's SOCKS5 before importing urlopen:
I have implemented something similar in another project of mine using requests (I even think it is possible to use the 9051 port which is the control port or whatever that's called and refresh the ip). Practically, it should not be difficult, however, these days I don't have enough time to implement and test this, due to other responsibilities.
Until I have free time (which may take months) I would be happy to accept a pull request with proper tests, or even suggest alternatives:
The minimum refresh time is once per day, you can reduce that to be every week or month for example.
Maybe there is an iptables workaround (Pretty sure there is) to redirect all outbound traffic through the tor service, something along the lines of AnonSurf.
Use something like proxychains and define one proxy (the tor socks5 proxy)
Maybe that doesn't sound too good, but since I am the only maintainer of the project and don't have much time to implement this at the moment, it could take some time to implement something like that. I obviously will accept a proper PR for this.
Thanks very much for taking the time to provide sample code on how to do this. It will be helpful if I start implementing this in the future.
I don't like frequent requests from my computer to a web services, so I like to transfer the requests through Tor for this kind of tools, I usually use SOCKS5 tor proxy witch gives you
socks5://127.0.0.1:9050
by default when you start tor serves.Describe the solution you'd like
I would like to see a proxy section in the extention config page in ulauncher, or if it's hard to make it more customized you can just put an on/off button to use tor.
How to implement it?
I found thet you are using
urllib
to get data so you can use this solution for tor's SOCKS5 before importingurlopen
:🔴🔴 Be aware about the
True
in:If you don't use it the DNS will be leaked.
The text was updated successfully, but these errors were encountered: