tor Questions

6

I'm trying to connect to a Tor hidden service using the following PHP code: $url = 'http://jhiwjjlqpyawmpjx.onion/' $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CU...
Franza asked 16/3, 2013 at 3:39

3

Solved

I am new to Tor. I have recently managed to execute a query from node.js while running a tor server instance on my PC. I have used the following piece of code: var Agent = require('socks5-https-c...
Brownout asked 20/5, 2015 at 8:26

2

Solved

I'm setting up a relay and my understanding is that the ORPort is required to be open to relay traffic from the outside world but do I need to enable the DirPort too?
Equality asked 6/2, 2016 at 1:23

6

Solved

I am brand new to Tor and I feel like multiple Tors should be considered. The multiple tors I mentioned here are not only multiple instances, but also using different proxy ports for each, like wha...
Spandau asked 14/1, 2013 at 15:18

2

Solved

I want to use Tor as a proxy for HTTP-requests with curl or wget on a CentOS Machine. I used this How-to and I looked for some answers on stackexchange and stackoverflow. https://medium.com/the-sys...
Baun asked 31/8, 2016 at 19:10

3

Solved

I'm trying to scrape some web pages in the TOR network, using Puppeteer and the tor package (apt install tor). Probably due to the nature of TOR connections sometimes I get a timeout. In addition, ...
Jaela asked 4/7, 2019 at 9:0

12

Is it possible to make selenium use the TOR browser? Does anyone have any code they could copy-paste?
Inhabiter asked 9/3, 2013 at 21:49

1

Solved

With the following code, on a Mac I tried to start Tor browser with Python and Selenium: from selenium import webdriver from selenium.webdriver.firefox.firefox_binary import FirefoxBinary from sele...
Midgut asked 12/3, 2022 at 18:13

4

Solved

I want to try and use TOR as HTTP proxy, and not SOCKS proxy. I have issues, where the destination blocks SOCKS and I want to try to check it with HTTP proxy instead. I did not find any solution ...
Postiche asked 14/2, 2015 at 20:34

4

I'm the operator of the XMPP server on darkness.su.The server runs on Centos 6. I installed TOR and configured it to provide a hidden service access to the server.It was working fine at first,but e...
Neutrino asked 24/7, 2015 at 22:34

10

I researched on it but I get that solution: from selenium import webdriver profile = webdriver.FirefoxProfile() profile.set_preference('network.proxy.type', 1) profile.set_preference('network.prox...
Scenic asked 16/12, 2015 at 16:13

2

I am using Scrapy with Privoxy and Tor. Here is my previous question Scrapy with Privoxy and Tor: how to renew IP, and here is the spider: from scrapy.contrib.spiders import CrawlSpider from scrap...
Planospore asked 11/7, 2017 at 14:4

3

Solved

I am trying to connect to a Tor browser but get an error stating "proxyConnectFailure" any ideas I have tried multiple attempts to get into the basics of Tor browser to get it connected but all in ...
Abnormity asked 27/12, 2018 at 9:16

2

Solved

Here is the code that i have till now import socks import socket import requests import json socks.setdefaultproxy(proxy_type=socks.PROXY_TYPE_SOCKS5, addr="127.0.0.1", port=9050) socket.socket =...
Carolincarolina asked 28/4, 2017 at 14:42

6

Solved

So, GitHub is now officially banned by Russian Government and Rospotrebnadzor. I used GitHub to create free software and share it, and it's important part of my life. Today I've installed Tor on A...
Maynor asked 3/12, 2014 at 18:48

7

Solved

I have the following script: import socks import socket socks.setdefaultproxy(socks.PROXY_TYPE_SOCKS5, "127.0.0.1", 9050) socket.socket = socks.socksocket import urllib2 print(urllib2.urlopen("ht...
Unexperienced asked 27/3, 2012 at 10:13

3

Solved

I am complete newbie to using requests and tor. The code I am using: def get_tor_session(): session = requests.session() # Tor uses the 9050 port as the default socks port session.proxies = {'...
Exhibitive asked 17/2, 2018 at 13:14

2

Solved

For the last few days, I have been playing around with python, learned from youtube, and decided to create few things I would love to automate. I have found the small problem - when I use my pytho...
Moreville asked 6/8, 2018 at 10:55

3

Solved

Im currently trying to execute TOR 6.0.4 with Selenium WebDriver (JAVA) 2.53 and Firefox 43.0. I've followed the instructions from this post Using Selenium WebDriver with Tor but Im getting an erro...
Bozcaada asked 24/8, 2016 at 23:19

15

Solved

Would it be possible to block Tor users? (https://www.torproject.org/) Due to the nature of the site I run I should do all I can to stop multiple accounts and block certain locations. Tor is worse...
tor
Hudnut asked 20/3, 2012 at 0:51

0

I am using Pycharm Community Edition 2020.3.2, Scholarly version 1.0.2, Tor version 1.0.0. I tried to scrape 700 articles to find their numbers of citations. Google Scholar blocked me from using se...
Colorant asked 9/1, 2021 at 19:55

1

Solved

I use google cloud shell to execute this program Linux version Distributor ID: Debian Description: Debian GNU/Linux 10 (buster) Release: 10 Codename: buster Tor version 0.3.5.10. When I ...
Caseate asked 27/6, 2020 at 2:10

2

Solved

Is there a way to use sock5 proxy to use TOR with requests? I know that requests only use http proxy... import requests r = requests.get('http://www.google.com',proxies= my_proxy)
Stork asked 2/8, 2015 at 23:41

2

I'm trying to initiate a tor browsing session through Tor Browser 9.5 which uses the default Firefox v68.9.0esr using GeckoDriver and Selenium through Python on a windows-10 system. But I'm facing ...
Gsuit asked 30/6, 2020 at 21:0

11

I have Tor running on my computer, and I need to change the Tor exit node every five minutes. For example, if I start using Tor via some exit node, then in 5 minutes I want Tor to change to an exit...
tor
Dekameter asked 28/12, 2009 at 15:22

© 2022 - 2024 — McMap. All rights reserved.